-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
36 lines (34 loc) · 966 Bytes
/
search.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
<!DOCTYPE html>
<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
href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;700&family=Righteous&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<title>Search Query</title>
</head>
<body id="search">
<!-- Navbar -->
<header>
<nav>
<div id="logo"><p>Lights Out</p></div>
<a href="index.html">Home</a>
<form action="search.html">
<input class="searchbox" type="text" placeholder="Search" />
<input class="search-submit" type="submit" value="" />
</form>
</nav>
</header>
<main>
<div class="main-container">
<h2 id="search-result">Search Results</h2>
<div class="query-list"></div>
</div>
</main>
<script type="module" src="app.js"></script>
</body>
</html>