-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (40 loc) · 1.02 KB
/
index.html
File metadata and controls
54 lines (40 loc) · 1.02 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
<!DOCTYPE HTML>
<html>
<head>
<title>Code Blue</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
@import url("./css/reset.css");
@import url("./css/common.css");
@import url("./css/desktop.css");
</style>
</head>
<body>
<header id="header">
<h1 id="header-title"><a href="index.html">Code Blue</a></h1>
<nav id="header-nav">
<ul>
<li><a href="about.html">What's Code Blue</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
<div class="clear"></div>
</header>
<section id="content">
<div id="padding-content">
<img class="speechCycleImage" src="img/speechCycle.png" />
</div>
</section>
<footer id="footer">
<nav id="footer-nav">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="">Legal</a></li>
<li><a href="">Github</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</footer>
</body>
</html>