forked from TienRamos/dice-randomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (55 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<section id="main-body">
<div class="flexbox-container">
<div class="heading">
<div class="title-container">
<h1 class="title">
dice<br>
randomizer<br>
</h1>
</div>
</div>
<hr class="title-hr">
<div class="subheading">
<h2 class="instruction">number of dice:</h2>
<div class="dice-number">
<a href="1-dice.html">
<div class="number-circle">
1
</div>
</a>
<a href="2-dice.html">
<div class="number-circle">
2
</div>
</a>
<a href="3-dice.html">
<div class="number-circle">
3
</div>
</a>
<a href="4-dice.html">
<div class="number-circle">
4
</div>
</a>
</div>
</div>
</section>
<!-- <section id="footer">
<div class="">
</div>
</section> -->
</body>
</html>