-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanilla JS Academy - Extra Credit</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Vanilla JS Academy - Extra Credit</h1>
<ul>
<li><a href="./01-toggle-password-using-button">Toggle Password Using Button</a></li>
<li><a href="./02-word-count-frequency">Word Count Frequency</a></li>
<li><a href="./03-gif-search-app">GIF Search App</a></li>
<li><a href="./04-nyt-user-selected-categories">NYT User Selected Categories</a></li>
</ul>
</main>
<footer>
<nav>
<ul>
<li>
<a href="https://github.com/meterrill/vanilla-js-academy-extra-credit"><span class="fab fa-github"></span> View on GitHub</a>
</li>
</ul>
</nav>
<p>Form design adopted from <a href="https://adamsilver.io/">Adam Silver</a>'s <a href="http://nostyle.herokuapp.com/">No Style Design System</a>.</p>
</footer>
</body>
</html>