-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.5 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 2.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<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>SearchMe</title>
</head>
<body>
<main>
<h1 class="offscreen">Search Me 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">S</span>
<span class="red">e</span>
<span class="yellow">a</span>
<span class="blue">r</span>
<span class="green">c</span>
<span class="red">h</span>
<span class="blue">M</span>
<span class="yellow">e</span>
<span class="red exclaim">!</span>
</div>
<form id="searchBar" class="searchBar" role="search">
<label class="offscreen" for="search">Enter a search term or phrase</label>
<input id="search" type="text" 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>