-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayground.html
More file actions
45 lines (36 loc) · 1.1 KB
/
playground.html
File metadata and controls
45 lines (36 loc) · 1.1 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./resources/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap" rel="stylesheet">
<title>Playground</title>
</head>
<body>
<div class="site-wrapper">
<div class="container">
<nav class="nav">
<a class="logo" href="index.html">Last</a>
<ul class="links">
<li class="nav-link"><a href="playground.html">Playground</a></li>
<li class="nav-link"><a href="#">Mock</a></li>
</ul>
</nav>
<main class="content">
<!--<button id="doAll">4DoAll</button>-->
<table id="fixturesTable">
<tr>
<th>Home Team</th>
<th>Away Team</th>
</tr>
</table>
</main>
<footer>
</footer>
</div>
</div>
<script src="./resources/scriptPG.js"></script>
</body>
</html>