-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.54 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
50
51
52
53
54
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Show the Local Weather</title>
<meta name="viewport" content="width=device-width">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="loader-container">
<div class="loader"></div>
</div>
<div class="container">
<div class="header-container">
<div class="CF">
<span class="celsius">°C</span>
<label class="switch-body">
<input type="checkbox">
<div class="switch"></div>
</label>
<span class="fahrenheit">°F</span>
</div>
<div class="widget-title">
<h1>Local Weather</h1>
</div>
</div>
<div class="info-container">
<div class="left">
<div class="weather-icon"></div>
<h3 class="condition"></h3>
<h3 class="wind"></h3>
<h3 class="pres"></h3>
</div>
<div class="right">
<h2 class="city"></h2>
<h3 class="today-date"></h3>
<h1 class="tempr"></h1>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="script.js"></script>
</body>
</html>