-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.46 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.46 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
<!DOCTYPE html>
<html lang= "en">
<head>
<title>Javascript Library</title>
<link rel="stylesheet" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
</head>
<body>
<header role="banner">Javascript Library</header>
<main role="main">
<section role="region" class="search">
<h1 class="howTo">Search YouTube and StackOverflow, all at once.</h1>
<form action="#" class="js-search-form" aria-controls="search_results">
<input type="text" placeholder="i.e. Array" aria-label="Search-YouTube" class="js-query">
<button type="submit" class="submit">Search</button>
</form>
</section>
<section class="search-results" aria-live="assertive" aria-atomic="true">
<div class="youtube_container">
<h3>Watch</h3>
<div class="youTube_search_results"></div>
</div>
<div class="stack_overflow_container">
<h3>Read</h3>
<div class="stackOverflow_seach_results">
</div>
</section>
</main>
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script type="text/javascript" src="index.js"></script>
</body>
<footer role="contentinfo">© 2018 Javascript Library</footer>
</html>