-
Notifications
You must be signed in to change notification settings - Fork 76
/
index.html
31 lines (30 loc) · 1.08 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
<!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 Api</title>
<link rel="stylesheet" href="./assets/style.css">
<link href="https://fonts.googleapis.com/css?family=Abel" 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 Simo Edwin with FFC WEATHER API.</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>