-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (46 loc) · 1.89 KB
/
index.html
File metadata and controls
56 lines (46 loc) · 1.89 KB
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
<doctype html>
<head>
<link rel="stylesheet" type="text/css" href="LocalWeather.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<!-- Country, City i Location -->
<div>
<h1>Local Weather App</h1>
<hr>
<p id="country">Country</p>
<p id="city">City</p>
<br>
<!-- Temp, Weather i windSpeed -->
<div class="row" id="white">
<div class="col-xs-4">
<a>
<img src="http://res.cloudinary.com/dcqcuv3gd/image/upload/v1489098018/thermometer_ml1h9k.png">
<p id="fTemp"></p>
</a>
</div>
<div class="col-xs-4">
<a>
<img id="icone">
<p id="weatherType">
</p>
</a>
</div>
<div class="col-xs-4">
<a>
<img src="http://res.cloudinary.com/dcqcuv3gd/image/upload/v1489098018/wind-sign_sfcnmd.png" target="_blank">
<p id="windSpeed"></p>
</a>
</div>
<!-- button convert F u C -->
<button>°F / C°</button>
</div>
</div>
<!-- Coded by -->
<div id="coded ">
<p>Coded by <a href="https://www.linkedin.com/in/admir-o%C5%A1ijan-646493130/">Osijan Admir</a></p>
</div>
<script type="text/javascript" src="LocalWeather API.js"></script>
</body>
</html>