-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (56 loc) · 1.81 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
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Local Weather Application</title>
<!--Google Fonts-->
<link href="https://fonts.googleapis.com/css?family=Comfortaa:700|Raleway" rel="stylesheet">
<!--Weather icons-->
<link rel="stylesheet" href="weather-icons-master/css/weather-icons.min.css">
<!--My Styles-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Local Weather App</h1>
<div class="card card-main">
<div id="info">
<div id="time">Time</div>
<div id="temp">Please wait...</div>
<div id="weather"></div>
<div id="text">Loading</div>
</div>
<div id="image"></div>
</div>
<!-- Container for flexbox -->
<div class="container">
<div class="card card-one">
<div id="time1">Narwhals</div>
<div id="temp1">...</div>
<div id="weather1">...</div>
</div>
<div class="card card-two">
<div id="time2">swimming</div>
<div id="temp2">...</div>
<div id="weather2">...</div>
</div>
<div class="card card-three">
<div id="time3">in the</div>
<div id="temp3">...</div>
<div id="weather3">...</div>
</div>
<div class="card card-four">
<div id="time4">ocean...</div>
<div id="temp4">...</div>
<div id="weather4">...</div>
</div>
<!-- Container END -->
</div>
<footer>
Kuba Michalski 2018 © Feel free to recreate and modify it but remember about credits. <br> See more of my work here: <a href="https://github.com/kubami9">github.com/kubami9</a>. <b>Have a nice day!</b>
</footer>
<!--JQUERY-->
<script src="jquery-3.2.1.min.js"></script>
<!--My JS-->
<script src="script.js"></script>
</body>
</html>