-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
34 lines (28 loc) · 873 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="weather.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script type="text/javascript" src="weather.js"></script>
<script language="JavaScript" src="http://www.geoplugin.net/javascript.gp" type="text/javascript"></script>
<title>Weather | Teller</title>
</head>
<body>
<div id = "container-fluid">
<div class="mainBox">
<div class="location">
</div>
<div class="temperature">
</div>
<div class="converter">
<p> <a href='#' class='celsius'>℃</a> | <a href="#" class='farenheit'>℉</a></p>
</div>
<div class="condition">
</div>
<div class="icon">
</div>
</div>
</div>
</body>
</html>