-
Notifications
You must be signed in to change notification settings - Fork 718
/
index.html
108 lines (66 loc) · 2.33 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<!-- HTML5 Reset:
https://github.com/murtaugh/HTML5-Reset
3RD PARTY TOOLS:
repo management: https://github.com/new
favicon generator: https://favicon.io
social meta tag generators: https://metatags.io — https://megatags.co
analytics providers: https://plausible.io — https://simplyanalytics.com — https://analytics.google.com
free web font providers: https://www.fontsquirrel.com — https://fonts.google.com
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="copyright" content="" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<div>
<header>
<h1><a href="/">Page Title</a></h1>
<nav>
<ul>
<li><a href="">Nav Link 1</a></li>
<li><a href="">Nav Link 2</a></li>
<li><a href="">Nav Link 3</a></li>
</ul>
</nav>
</header>
<main>
<article>
<h1>Article Header</h1>
<p>Etiam pretium odio eu mi convallis vitae varius neque pharetra. Nulla vestibulum nisi ut sem cursus sed mattis nisi egestas.</p>
<h2>Article Subhead</h2>
<p>Vestibulum lacus erat, volutpat vel dignissim at, fringilla ut felis.</p>
<form>
<fieldset>
<legend>Personal Info</legend>
<label for="name">Full Name:</label>
<span class="help-text" id="input-name-help">Single word names are supported.</span>
<input type="text" id="name" name="name" aria-describedby="input-name-help">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
</fieldset>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<input type="checkbox" id="terms" required="required" />
<label for="terms">I have read and accept the <a href="#" target="_blank">terms and conditions</a>.</label>
<input type="submit" value="Submit">
</form>
</article>
<aside>
<h2>Sidebar Content</h2>
<p>Vestibulum lacus erat, volutpat vel dignissim at, fringilla ut felis.</p>
</aside>
</main>
<footer>
<p><small>© 2023 Your Name Here. All Rights Reserved.</small></p>
</footer>
</div>
</body>
</html>