-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (39 loc) · 1.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>[ADD PAGE TITLE]</title>
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<div class="logo-container">
<img src="assets/logo.svg" alt="logo of the website" class="logo" />
<h1>[ADD PAGE TITLE]</h1>
</div>
<a class="btn" href="https://YOUR-GOOGLE-FORM-URL.com/" target="_blank">Add a Resource</a>
</header>
<div class="container">
<nav>
<input type="text" class="search" placeholder="Search for a resource..."/>
<ul class="categories">
<li data-category-type="all" style="color: #000">All</li>
</ul>
<div class="copyright">
<p>Website created and maintained by <a href="https://YOUR-WEBSITE-HERE.com/" target="_blank">YOUR NAME HERE</a>.</p>
<p>This website was inspired from <a href="https://www.ethicaldesignresources.com/" target="_blank">Ethical Design Resources</a> by Lexi Namer.</p>
<p>Copyright © <script>document.write(new Date().getFullYear())</script></p>
</div>
</nav>
<section class="resources">
</section>
</div>
<footer class="copyright">
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>