-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link
rel="apple-touch-icon"
sizes="180x180"
href="logo/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="logo/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="logo/favicon-16x16.png"
/>
<link rel="manifest" href="logo/site.webmanifest" />
<meta charset="utf-8" />
<title>Dice</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css?family=Indie+Flower|Lobster"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<h1>Welcome Players</h1>
<div class="dice">
<p class="p1">Player 1</p>
<img class="img1" src="./images/dice6.png" />
</div>
<div class="dice">
<p class="p2">Player 2</p>
<img class="img2" src="./images/dice6.png" />
</div>
<div>
<button class="playButton">Play</button>
</div>
</div>
<script src="index.js"></script>
<footer>
Made with 💖 by
<a href="https://www.linkedin.com/in/sanskrutigunde/" target="_blank"
>Sanskruti Gunde</a
>
</footer>
</body>
</html>