forked from jvicu2001/Simple-Weather-Overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.html
42 lines (33 loc) · 1 KB
/
weather.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400i&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="grid-container">
<div class="WeatherIcon WeatherInfo">
<div><img id="icon" src=""></div>
<div><span id="PlaceName"></span></div>
</div>
<div class="WeatherCondition WeatherInfo">
</div>
<div class="CurrentTemp WeatherInfo">
</div>
<div class="MinTemp WeatherInfo">
</div>
<div class="MaxTemp WeatherInfo">
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="./js/OpenWeather.js"> </script>
</body>
</html>