-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navajo Dictionary</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="/css"/>
</head>
<body>
<main>
<header><h1>Navajo Dictionary</h1></header>
<label class="switch">
<input id="lang-toggle" type="checkbox">
<span class="slider round">
<span class="on">Navajo</span>
<span class="off">English</span>
</span>
</label>
<input type="search" id="searcher" placeholder="Enter an English word...">
<div class="dropdown">
<button class="dropbtn">Recent Searches</button>
<div id="myDropdown" class="dropdown-content">
</div>
</div>
<ul id=results></ul>
<footer>Copyright 2022 Stephen Wall</footer>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.21.1/axios.min.js"></script>
<script src="./index.js"></script>
<script src="/js"></script>
</body>
</html>