-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgamestart.html
29 lines (27 loc) · 1.09 KB
/
gamestart.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" shrink-to-fit ="no">
<title>Start</title>
<link rel="stylesheet" href="app.css" type="text/css">
</head>
<body>
<ul>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
<li><a href="index.html">Home</a></li>
</ul>
<div class="container">
<div id="home" class ="flex-center flex-column">
<h1 style="font-size: 2rem; padding-top: 5rem;"> Please read the instructions carefully. </h1>
<h1 style="font-family: cursive; font-size: 3rem;"> Are you ready to start the game?? </h1>
<a class="btn" href="game.html"> YES </a>
<a class = "btn" href="index.html"> NO </a>
</div>
</div>
<div class ="footer">
<p class ="flex-center flex-column" style="color: aliceblue; font-size: medium;">Made by : Maitreyee Paliwal</h1>
</div>
</body>
</html>