-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.57 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
<!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" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css" />
<link rel="shortcut icon" href="images\dice-icon.png" type="image/x-icon">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&family=Lobster&display=swap" rel="stylesheet">
<title>Dice</title>
</head>
<body>
<div class="container">
<h1>Let's get started!</h1>
<div class="dice">
<p class="player">Player 1</p>
<img class="img" src="images\dice6.png" alt="Dice 1" />
</div>
<div class="dice">
<p class="player">Player 2</p>
<img class="img" src="images\dice6.png" alt="Dice 2" />
</div>
</div>
<button type="button" class="button btn btn-outline-info btn-lg" onclick="myFunction()">Play!</button>
<script src="index.js"></script>
</body>
<footer>🎲 Copyright © 2021 Made by Vishal Nayek 🎲</footer>
</html>