-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (25 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>English Dictionary</title>
<link rel="stylesheet" href="css/main.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1 class="toph1">Look up any English Word!</h1>
<a href="how-to-use.html">How to Use</a>
</header>
<div class="input-box">
<input type="text" name="word-box" id="word-box" placeholder="Word to look up...">
<button id="lookup-word-btn">Look Up</button>
</div>
<div class="results"></div>
<script src="js/main.js"></script>
</body>
</html>