-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsubpage-one.html
33 lines (33 loc) · 1.06 KB
/
subpage-one.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Project One - Subpage One</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<!-- This is a special css library that overrides all the ugle default css styles that come with html5 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- These semantic tags were added to help you get started but you are very welcome to delete any of them and do your own thing -->
<header>
<!-- header, h1, logo etc content -->
<h1>Your Project Name, or whatever</h1>
</header>
<nav>
<!-- Global naviagtion stuff here, but move this or delete this to your liking. Same goes for the rest -->
<ul>
<li><a href="#">link</a></li>
<li><a href="#">link</a></li>
<li><a href="#">link</a></li>
</ul>
</nav>
<main>
<!-- Main content here -->
</main>
<footer>
<!-- footer content here -->
</footer>
</body>
</html>