-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (40 loc) · 1.17 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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="static/jquery-ui.min.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="static/weather-icons.min.css">
<link rel="stylesheet" href="static/rate.css">
<!--
<link rel="stylesheet" href="static/weather.css">
-->
</head>
<body>
<header>
<div class="box">
<i class="fa fa-usd" aria-hidden="true"></i>
<rate id="usd_element" class="rate_box">
<i class="fa fa-spinner fa-spin fa-fw"></i>
</rate>
<i id="usd_arrow" class="fa" aria-hidden="true"></i>
</div>
<div class="box">
<i class="fa fa-eur" aria-hidden="true"></i>
<rate id="eur_element">
<i class="fa fa-spinner fa-spin fa-fw"></i>
</rate>
<i id="eur_arrow" class="fa" aria-hidden="true"></i>
</div>
<div class="box">
<div id="weather">
<i class="fa fa-spinner fa-spin fa-fw"></i>
</div>
</div>
</header>
</body>
<script src="static/jquery-1.12.3.min.js"></script>
<script src="static/jquery-ui.min.js"></script>
<script src="static/jquery.simpleWeather.min.js"></script>
<script src="js/app.js"></script>
<script src="js/weather.js"></script>
</html>