-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (37 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Weather in celcius</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<!-- Bootstrap linked -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<!-- style.css linked -->
<link rel="stylesheet" type="text/css" media="screen" href="./css/style.css" />
</head>
<body>
<div id="phone">
<div id="timer" class="item">
</div>
<div class="item">
<input type="text" id="city" placeholder="Enter city name" class="fas fa-stroopwafel">
</div>
<div class="item">
<input type="submit" id="search" value="Search">
</div>
<div id = "currentWeather" class="item">
</div>
<div id ="tomorrow" class="item">
</div>
<div id="in2days" class="item">
</div>
<div id="in3days" class="item">
</div>
</div>
<!-- main.js linked -->
<script src="./dist/main.js"></script>
</body>
</html>