-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (39 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dicee</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="big-container">
<div class="container">
<h1>Virtual Dice Roller</h1>
<div class="dice">
<p>Dice 1</p>
<img class="img1" src="images/dice6.png" />
</div>
<div class="dice">
<p>Dice 2</p>
<img class="img2" src="images/dice6.png" />
</div>
</div>
<div class="button-container">
<button id="new-quote" onClick="refresh(this)">Roll</button>
</div>
<footer class="">
Follow Me On
<a style="
font-size: 1rem;
text-shadow: 1px 0 rgba(65, 33, 33, 0.386);
color: #ffef42e4;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri,
'Trebuchet MS', sans-serif;
" href="https://github.com/RalucaElisabetaR">
GitHub</a>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>