-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathindex.html
41 lines (40 loc) · 1.59 KB
/
index.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
34
35
36
37
38
39
40
41
<!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 href="https://fonts.googleapis.com/css?family=Dosis|Indie+Flower|Mansalva&display=swap" rel="stylesheet">
<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>There Can Be Only One Header One</h1>
<h2>Header Two</h2>
<h3>Header Three</h3>
<h4>Header Four</h4>
<p>A paragraph of lorem ipsum text. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quas, eligendi.</p>
</header>
<nav>
<!-- Global naviagtion stuff here, but move this or delete this to your liking. Same goes for the rest -->
<ul>
<li><a href="subpage-one.html">example link to subpage one</a></li>
<li><a href="#">link</a></li>
<li><a href="#">link</a></li>
</ul>
</nav>
<main>
<blockquote>"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus soluta vero fugiat saepe, tempore laboriosam nemo pariatur maxime sunt rerum."</blockquote>
<!-- Main content here -->
</main>
<footer>
<!-- footer content here -->
© Team Awesome
</footer>
</body>
</html>