-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (32 loc) · 1.02 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">
<meta name="description" content="This is where your description goes">
<meta name="keywords" content="one, two, three">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=no;user-scalable=0;" />
<title>D&D5e Spell Lookup</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<h1>D&D5e Spell Lookup</h1>
<form autocomplete="off" action="">
<div class="autocomplete" style="width:300px;">
<input id="myInput" type="text" name="myCountry" placeholder="spell">
</div>
<button type="button" name="button">Get Spell Data</button>
</form>
<section id="spell"></section>
<script type="text/javascript" src="js/main.js"></script>
</main>
<footer>
<p>Resources used</p>
<ul>
<li>Damage type images: <a href="https://icons8.com/">icons8</a></li>
</ul>
</footer>
</body>
</html>