-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
50 lines (45 loc) · 1.47 KB
/
template.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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en-CA">
<head>
<title>Demo Page - Len’s Stuff</title>
<meta name="author" content="Len Popp">
<link rel="license" href="#license">
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/site.css">
</head>
<body>
<header>
<hgroup>
<a href="/"><img src="/assets/logo.jpg" class="logo" alt="home"></a>
<h1>Demo Page</h1>
<p>A demo of a styled HTML page</p>
</hgroup>
<nav>
<!--nav button--><label for="navCheck"> </label><input type="checkbox" id="navCheck">
<ul>
<li><a href="#intro">Intro</a></li>
<li><a href="#main">Main</a></li>
<li><a href="#conclusion">Conclusion</a></li>
<li>Back to <a href=".">[x]</a></li>
<li><a href="/">Home</a></li>
</ul>
</nav>
</header>
<main>
<h1><a name="intro"></a>Intro</h1>
<p>Introduction.</p>
<h1><a name="main"></a>Main</h1>
<p>Main section.</p>
<h1><a name="conclusion"></a>Conclusion</h1>
<p>Final section.</p>
</main>
<footer><g-row><g-col style="width: 110px; vertical-align: middle">
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/">
<img src="https://i.creativecommons.org/l/by/4.0/88x31.png" alt="Creative Commons Licence"/></a>
</g-col>
<g-col><div id="license">© 2024 Len Popp<br>
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
</div></g-col></g-row></footer>
</body>
</html>