-
Notifications
You must be signed in to change notification settings - Fork 0
/
oxygen.html
86 lines (78 loc) · 2.46 KB
/
oxygen.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Oxygen</title>
<!---------- Link to hover CSS ------------>
<link href="oxygen_style.css" type="text/css" rel="stylesheet" />
<!---------- Link to google fonts ------------>
<link href="https://fonts.googleapis.com/css?family=Dosis:400,600" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css?family=Raleway');
</style>
</head>
<!---------- Start of body ------------>
<body>
<!-------------- Header----------------->
<header> </header>
<section class="welcome">
<!---back-button--->
<div id="back-button">
<a href="index.html">
<img src="img/blue-home-button.png" /> </a>
</div>
<h1> Let's learn about Oxygen!</h1>
<div id="about-oxygen-list">
<ul>
<li>
Atomic Number: 8
</li>
<li>
Discovery: 1774
</li>
<li>
Oxygen is a colourless, odourless gas.
</li>
<li>
Oxygen makes up 21% of the atmosphere by volume.
</li>
</ul>
</div>
<!--- sulphur--->
<div id="oxygen">
<img src="img/oxygen_card_thick.png" />
</div>
</section>
<!--------------- about the element---------------------->
<section class="about-oxygen">
<div id="cards"> </div>
<div id="container" style="width:100%;">
<div id="left" style="float:left; width:50%;"> <h2></h2>
<img src="img/breathe.png"/>
</div>
<section class="more-facts">
<div id="right" style="float:right; width:50%;">
<h2>More facts... </h2>
<div id="about-oxygen-list-2">
<ul>
<li>
Oxygen is a natural occurring element.
</li>
<li>
When living things need energy they take in oxygen for respiration.. in other words it's what we breathe!
</li>
</ul>
</div>
</div>
</section>
</div>
</section>
<!--------------- footer -----------------
<section class="footer">
<footer>
<h1 id="footer">
</h1> </footer>
</section> ----->
</body>
</html>