-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.php
More file actions
35 lines (35 loc) · 794 Bytes
/
games.php
File metadata and controls
35 lines (35 loc) · 794 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
<?php
if(!isset($_COOKIE['username']))
{
header("Location:login.php");
}
?>
<!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="./Styles/games.css">
<title>Games</title>
</head>
<body>
<?php
include("./header.html");
include("./footer.html");
?>
<div id="container">
<span id="backGround"></span>
<div id="bubble">
<div class="cardTitle">
Bubble Burst
</div>
</div>
<div id="tetris">
<div class="cardTitle">
Word Tetris
</div>
</div>
</div>
</body>
<script src="./Js/games.js"></script>
</html>