-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (54 loc) · 2.17 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
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dice Game</title>
<meta name="description"
content="Dice Game - if you have an argument with your friend, bet by playing this game and see who is right or who should wash the dishes. It's so simple that even your dog can play it.">
<meta name="author" content="Alin Neagu">
<meta name="keywords" content="dice, dice game, dicee, vs, versus, 2 players, easy, Alin Neagu, alin">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/svg+xml" href="images/favicon.svg">
<meta property="og:url" content="https://alinneagu2004.github.io/Dice-Game/">
<meta property="og:title" content="Dice Game">
<meta property="og:description"
content="Dice Game - if you have an argument with your friend, bet by playing this game and see who is right or who should wash the dishes. It's so simple that even your dog can play it.">
<meta property="og:image" content="https://i.ibb.co/JjDGy4S/favicon.jpg">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Lobster" rel="stylesheet">
</head>
<body>
<section class="main-container">
<header>
<h1>Refresh Me</h1>
</header>
<main class="container">
<div class="div-container">
<div class="dice">
<div class="dice-content">
<p>Player 1</p>
<img class="img1" src="images/dice6.svg" alt="dice">
</div>
</div>
<div class="dice">
<div class="dice-content">
<p>Player 2</p>
<img class="img2" src="images/dice6.svg" alt="dice">
</div>
</div>
<div class="dice-content">
<footer>
<h3><sub><img src="images/dice-icon.svg" alt="dice-icon"></sub> © 2021 Alin Neagu <sub><img
src="images/dice-icon.svg" alt="dice-icon"></sub></h3>
</footer>
</div>
</div>
</main>
<a id="btn">
<img src="images/dice-btn.svg" alt="dice-roll">
</a>
</section>
<script src="dice.js"></script>
</body>
</html>