-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.php
36 lines (36 loc) · 896 Bytes
/
welcome.php
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
<?php
include("functions/navbar.php");
include("functions/logout.php");
?>
<!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">
<title>Welcome</title>
<link rel="stylesheet" href="styles/style.css">
<style>
button{
justify-content: center;
position: absolute;
left: 50%;
top: 56%;
transform: translate(-50%,-30%);
}
a{
overflow:hidden;
color:black;
text-decoration:none;
}
</style>
</head>
<body>
<div class = "main">
<div class="box">
<h2>Welcome to Tetris</h2><br>
</div>
<button><a href = "tetris.php">Click here to play</a></button>
</div>
</body>
</html>