-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.19 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
<!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>Weather App</title>
<link rel="stylesheet" href="./assets/style.css">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="weather-box">
<div class="row1">
<h2 class="weather-location"></h2>
<canvas class="weatherType" id="icon1" width="128" height="128"></canvas>
</div>
<div class="row2">
<h1 class="temp"></h1>
<span class="temp-type">°C</span>
</div>
<h2 class="weather-description"></h2>
<p class="made-by">Made by Anurag Dhungana with FFC WEATHER API.Check the code in <a href="https://github.com/Aarekaz/Weather-app">Github</a>.</p>
</div>
</div>
<script src="./assets/js/skycons.js"></script>
<script src="./assets/js/jquery-3.2.1.min.js"></script>
<script src="./assets/js/main.js"></script>
</body>
</html>