-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (76 loc) · 2.61 KB
/
index.html
File metadata and controls
77 lines (76 loc) · 2.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Transition & Animation</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<style>@import url('https://fonts.googleapis.com/css?family=Inconsolata|Merriweather');</style>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<body>
<header id="header">
<div class="page-wrapper">
<nav class="main-nav">
<h2 class="hidden">Main navigation</h2>
<ul>
<li><a href="assignment5.html">Home</a></li>
<li><a href="?contact">Contact</a></li>
</ul>
</nav>
<img id="logo" src="images/logo.svg" alt="logo" />
<h1>Welcome <span>To the Ocean!</span></h1>
</div>
</header>
<main id="main">
<div class="page-wrapper">
<div id="sky-wrapper">
<div id="sun"></div>
<div class="cloud" id="cloud1">
</div>
<div class="cloud" id="cloud2">
</div>
<div class="cloud" id="cloud3">
</div>
</div>
<div id="ocean-wrapper">
<div id="ocean"></div>
<div id="boat-container">
<div class="sail" id="sail1"></div>
<div class="sail" id="sail2"></div>
<div id="column"></div>
<div id="draft"></div>
</div>
<div>
<div id="fish-wrapper1"><div class="fish" id="fish1"><div></div></div>
</div>
<div id="fish-wrapper2"><div class="fish" id="fish2"><div></div></div>
</div>
<div id="fish-wrapper3"><div class="fish" id="fish3"><div></div></div>
</div>
<div id="fish-wrapper4"><div class="fish" id="fish4"><div></div></div>
</div>
<div id="fish-wrapper5"><div class="fish" id="fish5"><div></div></div>
</div>
</div>
<img class="bubble" id="bubble1" src="images/bubble1.png" alt="bubble"/>
<img class="bubble" id="bubble2" src="images/bubble2.png" alt="bubble"/>
<img class="bubble" id="bubble3" src="images/bubble2.png" alt="bubble"/>
<img class="bubble" id="bubble4" src="images/bubble1.png" alt="bubble"/>
<img class="bubble" id="bubble5" src="images/bubble2.png" alt="bubble"/>
<img id="weed" src="images/weed.svg" alt="seaweed"/>
</div>
</div>
</main>
<footer id="footer">
<div class="page-wrapper">
<p>© Copyright NgocTo, 2018. All rights reserved.</p>
<div id="social-links">
<a href="#"><i class="fa fa-github-square" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>