-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 804 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Intro</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/main.css" media="screen" title="no title" charset="utf-8" />
</head>
<body>
<div class="nav">
<h1>My Super Cool Page</h1>
<ul class="nav-bar">
<li><a href="index.html" class="nav-link">HOME</a></li>
<li><a href="about.html" class="nav-link">ABOUT</a></li>
</ul>
</div>
<div class="content">
<p>This is my <span class="home">HOME</span> page!</p>
</div>
<div class="footer">
<h5>I am a footer.</h5>
</div>
</body>
</html>