-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.html
76 lines (69 loc) · 2.86 KB
/
home.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
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sacramento&display=swap" rel="stylesheet">
<link href='https://unpkg.com/[email protected]/icons/css/play-button-o.css' rel='stylesheet'>
<style>
.gg-play-button-o {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,2));
width: 22px;
height: 22px;
border: 2px solid yellow;
border-radius: 20px;
}
.gg-play-button-o::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 0;
height: 10px;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 6px solid ;
top: 4px;
left: 7px
}
</style>
</head>
<body>
<img class="img-style" src="/images/Play! (1) (1).png" alt="">
<img class="img-style" src="/images/Play! (2).png" alt="">
<img class="img-style" src="/images/Untitled design (1) (1).png" alt="">
<img class="img-style" src="/images/Untitled design (2) (1).png" alt="">
<img class="img-style" src="/images/Untitled design (3) (1).png" alt="">
<img class="img-style" src="/images/Untitled design (4) (1).png" alt="">
<img class="img-style" src="/images/Untitled_design-removebg.png" alt="">
<div id="homePage" class="home-page" style="display: block">
<h2 class="Heading">Welcome to Wonder Play!</h2>
<p>Choose a game to play:</p>
<div class="game-container">
<div class="game-card">
<p class="game-title">Sudoku</p>
<a class="game-buttons" href="/sudoku/index.html"><i class="gg-play-button-o"></i></a>
</div>
<div class="game-card">
<p class="game-title">Tic-Tac-Toe</p>
<a class="game-buttons" href="/tic-tac-toe/index.html"><i class="gg-play-button-o"></i></a>
</div>
<div class="game-card">
<p class="game-title">Guess Word</p>
<a class="game-buttons" href="/Word-Game/index.html"><i class="gg-play-button-o"></i></a>
</div>
<div class="game-card">
<p class="game-title">Hanoi Tower</p>
<a class="game-buttons" href="/hanoi game/hanoi.html"><i class="gg-play-button-o"></i></a>
</div>
</div>
</div>
</body>
</html>