-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbasic-html5.html
More file actions
34 lines (32 loc) · 863 Bytes
/
basic-html5.html
File metadata and controls
34 lines (32 loc) · 863 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
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Site Name</title>
<meta name="description" content="Short _page content_ description" />
<meta name="author" content="Site author" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body id="pageName">
<!-- Beginning of page content -->
<section id="pageWrapper">
<header id="pageHeader">
<h1>Site Name</h1>
<h2>Page Name</h2>
<nav id="pageNav">
<ul id="pageNavList">
<li><a href="#1">Navigation Link 1</a></li>
<li><a href="#2">Navigation Link 2</a></li>
<li><a href="#3">Navigation Link 3</a></li>
</ul>
</nav>
</header>
<!-- Page main content -->
<footer id="pageFooter">
</footer>
</section>
<!-- End of page content -->
<script src="js/script.js"></script>
</body>
</html>