-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (53 loc) · 2.01 KB
/
index.html
File metadata and controls
67 lines (53 loc) · 2.01 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Leafer</title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon"> -->
<link href="css/style.css" rel="stylesheet">
</head>
<!-- https://www-league.nhlstatic.com/builds/site-core/01c1bfe15805d69e3ac31daa090865845c189b1d_1458063644/images/team/logo/current/10_dark.svg -->
<body>
<div>
<div class="grid-container">
<div class="grid-item home">
<h1>Home
</h1>
</div>
<div class="grid-item away">
<h1>Away
</h1>
</div>
<div id="homeLogo" class="grid-item teamLogo">
</div>
<div class="grid-item score">
<h1 id="homeScore"></h1>
</div>
<div class="grid-item timer">
<div><h3 id="period">Period
</h3>
</div>
<br/>
<div>
<p id="timer"></p>
</div>
</div>
<div class="grid-item score">
<span>
<h1 id="awayScore"></h1>
</span>
</div>
<div id="awayLogo" class="grid-item teamLogo awayLogo" >
</div>
<div class="grid-item countdown">
<p id="countdown">0d 0h 0m 0s</p>
</div>
</div>
</div>
</body>
<script src="js/script.js"></script>
</html>