21 lines
505 B
HTML
21 lines
505 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>NHL Scoreboard</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" type="text/css" href="static\styles.css">
|
|
</head>
|
|
<body>
|
|
<h1 id="live-games"></h1>
|
|
<div id="live-games-section"></div>
|
|
|
|
<h1 id="on-later"></h1>
|
|
<div id="pre-games-section"></div>
|
|
|
|
<h1 id="game-over"></h1>
|
|
<div id="final-games-section"></div>
|
|
|
|
<script src="/static/script.js"></script>
|
|
</body>
|
|
</html>
|