-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 729 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 729 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
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>Sally Student | About me</title>
<link rel="stylesheet" type="text/css" href="./main.css">
<script type="text/javascript" src='./main.js'></script>
<meta charset="utf-8">
</head>
<body>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about_me">About me</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
</nav>
<header>
<h1>About me</h1>
</header>
<main>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p>
</main>
</body>
</html>