-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (40 loc) · 1.39 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dice Decider!</title>
<link rel="stylesheet" href="stylo.css">
<!-- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous"> -->
</head>
<body>
<a class=" anchor" href="#firstsection">Rules of the game!😜</a>
<h1 class="displayresult">Refresh Me! 🙂</h1>
<div class="images">
<div class="player1">
<p>Player1</p>
<img class="images1" src="dice1.png">
</div>
<div class="player2">
<p>Player2</p>
<img class="images2" src="dice2.png">
</div>
</div>
<div id="firstsection">
<div class="header">
<h1 class="title">Dice decides the Fate!</h1>
<p class="intropara"> The rules of the game are simple.
Given two dices ,Players have to select which side of the dice are their.</p>
<p class="intropara">Then either player refreshes the page and the number on the dice changes
The player that have highest number on their dice wins.
</p>
</div>
</div>
<div class="outro">
<h3>Thank You for Playing!</h3>
</div>
<p class="outropara">by-Vivek Dubey</p>
<script src="index.js"></script>
</body>
</html>