-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 932 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>searchIT</title>
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|M+PLUS+1p|Livvic|Poiret+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="titleContainer">
<div id="searchit">search<span id='it'>IT</span></div>
<input id="inputBox" type="text" placeholder="City or State">
<div id="inputHint">input city or state should be a string. i.e new york</div>
</header>
<section id="resultContainer">
<div id="result"></div>
</section>
<div class="modalContainer" id="modalContainer">
<div class="modalContent" id="modalContent">
<div id="closeModal">×</div>
<div id="modalResults">results here</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>