-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (74 loc) · 3.54 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
75
76
77
78
79
80
81
82
83
84
85
<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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="sass/style.css">
<script src="js/main.js" type="module"></script>
<title>Search Me!</title>
</head>
<body>
<main>
<!--accessibility for screenreaders-->
<h1 class="offscreen">Search me a Wikipedia powered Search</h1>
<section class="searchEntry">
<h2 class="offscreen">Search Entry</h2>
<!--The logo can be skipped-->
<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 Result</h2>
<!--aria -live set to assertive due to changes in the result-summary -->
<div class="statsBar">
<div id="stats" class="stats" aria-live="assertive"></div>
</div>
<div class="searchResults" id="searchResults">
<!--div class="resultItem">
<div class="resultTitle">
<a href="http://">Player</a>
</div>
<div class="resultContents">
<div class="resultthumb">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Serena_Williams_at_2013_US_Open.jpg/330px-Serena_Williams_at_2013_US_Open.jpg"
width="50" alt="player">
</div>
<div class="resultText">
<p class="resultDescription"></p>
</div>
</div>
</div-->
</div>
</section>
</main>
<!-- << >> will not read by the helper devices -->
<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>