-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Forecast</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="weather_icon.png" type="image/x-icon">
</head>
<body>
<div class="location">
<h1 class="location-timezone">Timezone</h1>
<canvas class='icon' width="128" height="128"></canvas>
</div>
<!-- <div class="input-location-name">
<input id='textfield' type="text" placeholder="Azamgarh">
<button id='textSubmit' type="submit" onclick="extractFun()">Submit</button>
</div> -->
<div class="temprature">
<div class="degree-section">
<h2 class="temprature-degree">34</h2>
<span>
F
</span>
</div>
<div class="temprature-description">
Its cold
</div>
</div>
<script src="skycons.js"></script>
<script src="app.js"></script>
</body>
</html>