-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (46 loc) · 1.31 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
43
44
45
46
47
48
49
50
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div class="title-input-wrapper">
<h1 class="title">Simple Weather App</h1>
<!-- search city -->
<form id="searchForm" class="form-wrapper">
<div class="input-info-wrapper">
<input
class="input"
id="city"
type="text"
placeholder="search for a city"
/>
<p class="error-msg" id="error-msg" aria-hidden="true"></p>
</div>
<button type="submit" class="button-submit">submit</button>
</form>
</div>
<!-- cards -->
<ul id="cards" class="cards"></ul>
<!-- empty -->
<div class="image-wrapper">
<img
id="empty-icon"
class="empty-icon"
aria-hidden="false"
src="./assets/box.png"
width="180"
height="180"
/>
</div>
</div>
<script src="./script.js" type="module"></script>
</body>
</html>