-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWelcomePage.html
More file actions
35 lines (34 loc) · 871 Bytes
/
WelcomePage.html
File metadata and controls
35 lines (34 loc) · 871 Bytes
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>
Snakes & Ladders Game
</title>
<style>
body{
background: url("snakebackground.jpg") no-repeat top center fixed;
background-size: cover;
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
</style>
<link rel="stylesheet" href="Snake&Ladder.css">
</head>
<body>
<div id="top">
R.I.T
</div>
<div id="welcome">
<h1><span class="colour">Welcome to Snakes & Ladders Game</span></h1>
<h1>Project by Abhishek Kempanna</h1>
<h5>Click down to Register or Login as PLAYER</h5>
</div>
<form>
<input class="welcomeButton" type="button" value="Click here to Register/Login" onclick="window.location.href='snakeLadder.php'" />
</form>
</body>
</html>