-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
27 lines (27 loc) · 752 Bytes
/
main.html
File metadata and controls
27 lines (27 loc) · 752 Bytes
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 lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Marm Mash</title>
<link rel="stylesheet" href="style.css">
<script src="app.js" charset="utf-8"></script>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap" rel="stylesheet">
</head>
<body>
<div class="grid-container">
<div class="grid"></div>
</div>
<div class="boards-container">
<div class="boards">
<div class="score-board">
<h3>Score</h3>
<h1 id=score></h1>
</div>
<div class="timer-clock">
<h3>Timer</h3>
<h1 id=timer></h1>
</div>
</div>
</div>
</body>
</html>