generated from GeekTrainer/aswa-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (67 loc) · 2.12 KB
/
index.html
File metadata and controls
80 lines (67 loc) · 2.12 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>GTCoding</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h2>Locate Me</h2>
<div class="select-box">
<div class="options-container">
<div class="option">
<input
type="city"
class="city"
id="London"
name="Cities"
/>
<label for="London">London</label>
</div>
<div class="option">
<input type="city" class="city" id="Mumbai" name="Cities" />
<label for="Mumbai">Mumbai</label>
</div>
<div class="option">
<input type="city" class="city" id="Los Angeles" name="Cities" />
<label for="Los Angeles">Los Angeles</label>
</div>
<div class="option">
<input type="city" class="city" id="Tokyo" name="Cities" />
<label for="Tokyo">Tokyo</label>
</div>
<div class="option">
<input type="city" class="city" id="Chicago" name="Cities" />
<label for="Chicago">Chicago</label>
</div>
</div>
<div class="selected">
Select a City
</div>
<div class="search-box">
<input type="text" placeholder="Search up the city of your choice!" />
</div>
</div>
</div>
<table style="width:48%">
<tr>
<th class = "main-bar">Information</th>
</tr>
<tr>
<td class = "climate-info">Climate Info: </td>
</tr>
<tr>
<td class = "health-info">Health Info: </td>
</tr>
<tr>
<td class = "safety-info">Is it safe?: </td>
</tr>
</table>
<!-- <div class = "more-info"> Want more info on your selected city? </div>
<button class = "more-info-button"> Click Here </button> -->
<script src="script.js"></script>
</body>
</html>