-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 967 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Animating the Thermometer</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
<link href="./style/thermometer.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Bellefair" rel="stylesheet">
</head>
<body>
<div class="title center">Thermometer Animation (x2)</div>
<div> </div>
<div> </div>
<div class="center">
<div id="node" class="fa"></div>
</div>
<div> </div>
<div> </div>
<hr />
<div> </div>
<div class="title center">Thermometer Animation (x4)</div>
<div> </div>
<div> </div>
<div class="center">
<div id="node-2" class="fa"></div>
</div>
<script type="text/javascript" src="./js/thermometer.js"></script>
</body>
</html>