-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (74 loc) · 2.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/f5a3738bd6.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="dist/css/style.min.css" />
<script src="js/main.js" type="module"></script>
<title>POOGLE</title>
</head>
<body>
<main>
<h1 class="offscreen">POOGLE A Wikipedia Powered Search Engine</h1>
<section class="searchEntry">
<h2 class="offscreen">Search Term Entry</h2>
<div class="logo" aria-hidden="true">
<span class="blue">P</span>
<span class="red">O</span>
<span class="yellow">O</span>
<span class="blue">G</span>
<span class="green">L</span>
<span class="red">E</span>
<span class="yellow exclaim">!</span>
</div>
<form id="searchBar" class="searchBar" role="search">
<label for="search" class="offscreen"
>Enter a search term or phrase</label
>
<input type="text" id="search" autocomplete="off" role="searchbox"/>
<div
id="clear"
class="none button clear"
role="button"
tabindex="0"
aria-label="Clear search terms"
>
<i class="fas fa-times"></i>
</div>
<button
id="searchButton"
class="button searchButton"
type="submit"
aria-label="Submit button"
>
<i class="fas fa-search blue"></i>
</button>
</form>
</section>
<section class="results">
<h2 class="offscreen">Search Results</h2>
<div class="statsBar">
<div id="stats" class="stats" aria-live="assertive"></div>
</div>
<div id="searchResults" class="searchResults"></div>
</section>
</main>
<footer>
<p>
<span aria-hidden="true"><<</span> Powered by
<a href="https://www.wikipedia.org" target="_blank">Wikipedia</a>
<span aria-hidden="true">>></span>
</p>
</footer>
</body>
</html>