-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (32 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Dice</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:700|Raleway:500|Roboto+Condensed&display=swap" rel="stylesheet">
</head>
<body>
<div class="top-container">
<img src="logo.png" alt="the-logo">
</div>
<div class="dice-choose-text">
<h1 class="big-text">Choose Your Dice Type.</h1>
</div>
<div class="dice-choice">
<ul class="two-dice">
<li class="die dot-dice"><a href="dice.html"><img src="dice6.png" alt="dot-dice-choice"><p>Standard Dots</p></a></li>
<li class="die"><a href="num-dice.html"><img src="nodice6.png" alt="Number-dice-choice"><p>English Numerals</p></a></li>
</ul>
<ul class="two-dice">
<li class="die"><a href="roman-dice.html"><img src="romandice6.png" alt="dot-dice-choice"><p>Roman Numerals</p></a></li>
<li class="die"><a href="eng-dice.html"><img src="engdice6.png" alt="Number-dice-choice"><p>English Words</p></a></li>
</ul>
</div>
<footer>
<h1 class="big-text">Rolling Elements</h1>
</footer>
</body>
<script src="dice.js" charset="utf-8"></script>
</html>