-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 910 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dice Game</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/favicon.PNG" type="image/x-icon" />
</head>
<body>
<div class="heading">
<h1>Play</h1>
</div>
<div class="container">
<div class="play-section">
<div class="player-1">
<h3>Player 1</h3>
<img id="p1-img" src="images/dice2.png" alt="dice">
</div>
<div class="player-2">
<h3>Player 2</h3>
<img id="p2-img" src="images/dice2.png" alt="dice">
</div>
</div>
<a class="btn" >Play</a>
</div>
<footer><h3>🎲By Nazeem Khan🎲</h3></footer>
<script src="index.js"></script>
</body>
</html>