-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (36 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>gClone</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22 fill=%22DodgerBlue%22><text y=%22.9em%22 font-size=%2290%22>G</text></svg>">
<link rel="stylesheet" href="static/css/style.css">
<script defer src='bundle.js'></script>
</head>
<body>
<header></header>
<main>
<section class="search-container">
<form>
<h1>G<div>c</div><div>l</div><div>o</div><div>n</div><div>e</div></h1>
<div class="parent">
<input type="text" id="search-bar" autocomplete="off" />
<div class="child"><button id="clear-btn">✕</button><span>🔍</span></div>
</div>
<div class="input-button-cont">
<input id="search-button" type="submit" value="gClone Search" />
<input id="lucky-button" type="submit" value="I'm Feeling Random" />
</div>
</form>
</section>
<div id="resultSection">
</div>
</main>
<footer>
<div id="location"> </div>
<div id="lower-footer">
<p></p>
<p class="center">© 2021</p>
</div>
</footer>
</body>
</html>