-
Notifications
You must be signed in to change notification settings - Fork 3
/
countdown.html
25 lines (24 loc) · 1.18 KB
/
countdown.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
<html>
<head>
<title>countdown</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="countdown.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Metal+Mania" rel="stylesheet">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.1.0.min.js"
integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script type="text/javascript" src="underscore-min.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.4/firebase.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="firebase.js"></script>
<script type="text/javascript" src="countdown.min.js"></script>
<script type="text/javascript" src="countdown_page.js"></script>
</head>
<body>
<div class="title">Urza's Lunch Break</div>
<div class="starting">going live in</div>
<div class="countdown"></div>
<div class="sandwich"></div>
</body>
</html>