-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtemplate.html
53 lines (52 loc) · 2.37 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
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600&family=Inter:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<!-- Update title -->
<title>Accessibility Resources</title>
</head>
<body>
<header>
<div class="container">
<div class="logo">CLG Community Accessibility Resources</div>
</div>
</header>
<main>
<div class="container main-content">
<!-- NOTE: If you update the navigation, please also update it on all other pages -->
<!-- ADD class="active" to the corresponding link for the page you are creating and remove from 'Home' -->
<nav class="sidebar-nav">
<ul>
<li><a href="accessibility-resources/index.html" class="active">Home</a></li>
<li><a href="accessibility-resources/tools-and-resources.html">Tools & Resources</a></li>
<li><a href="#">Applying Accessibility</a></li>
<li><a href="accessibility-resources/accessibility-resources/manifesto.html">Manifesto</a></li>
<li><a href="accessibility-resources/accessibility-resources/about.html">What is this thing?</a></li>
<li><a href="accessibility-resources/people-to-follow.html">People to follow</a></li>
<li class="btn">
<a href="accessibility-resources/accessibility-resources/sub-page/web-developer-pledge.html">Take the pledge!</a>
<!-- NOTE: href link to subpages will be different if you are creating a new document in the subpage folder eg <a href="web-developer-pledge.html">Take the pledge!</a> -->
<!-- NOTE: href link to subpages will be different if you are creating a new document in the subpage folder eg <a href="web-developer-pledge.html">Take the pledge!</a> -->
</li>
</ul>
</nav>
<article>
<h1>Page title</h1>
<section>
<h2>Section heading</h2>
<p>Add content here</p>
</section>
<!-- Add more sections as required -->
</article>
</div>
</main>
<footer></footer>
</body>
</html>