-
Notifications
You must be signed in to change notification settings - Fork 1
/
4-dice.html
56 lines (47 loc) · 1.37 KB
/
4-dice.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
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Dice Randomizer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="css/styles.css">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<section id="main-body-dice">
<div class="flexbox-row">
<div class="dice-display-2">
<img class="dice1" src="images/dice1.png">
</div>
<div class="dice-display-2">
<img class="dice2" src="images/dice1.png">
</div>
<br>
<div class="dice-display-2">
<img class="dice3" src="images/dice1.png">
</div>
<div class="dice-display-2">
<img class="dice4" src="images/dice1.png">
</div>
</div>
<div class="two-buttons">
<a href="4-dice.html">
<div class="randomize-button">
randomize
</div>
</a>
<br>
<a href="index.html">
<div class="select-button">
select number of dice
</div>
</a>
</div>
</section>
<!-- <section id="footer">
</section> -->
<script src="index.js" type="text/javascript"></script>
</body>
</html>