-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 889 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
<!DOCTYPE html>
<html>
<head>
<title>flipClock</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="jquery.js"></script>
<script src="flipClock.js"></script>
</head>
<body>
<div id="floater">
</div>
<div id="content">
<div class="top">
<div class="digit firstDigit"></div>
<div class="digit secondDigit"></div>
<div class="digit thirdDigit"></div>
<div class="digit fourthDigit"></div>
</div>
<div class="bottom">
<div class="digit firstDigit"></div>
<div class="digit secondDigit"></div>
<div class="digit thirdDigit"></div>
<div class="digit fourthDigit"></div>
</div>
</div> <!--content-->
</body>
</html>