-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
43 lines (30 loc) · 862 Bytes
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dice Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<header>
<h1>Basic JS Game</h1>
</header>
<div class="players">
<h2 id="p1">Player 1</h2>
<h3>VS</h3>
<h2 id="p2">Player 2</h2>
</div>
<div class="stage">
<div class="place place-1"></div>
<div class="board">
<div class="result"></div>
<button>Click To Play</button>
</div>
<div class="place place-2"></div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>