-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
39 lines (33 loc) · 906 Bytes
/
index.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
37
38
39
<!DOCTYPE html>
<html lang="en">
<?php
$database = include('../config.php');
//test
//echo $database['host'];
?>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<title>Git Gud or Git Flashd</title>
</head>
<!-- Don't use PHP header as this is a one time thing -->
<header>
<h1 id = "center">Flashcard Revision Game</h1>
</header>
<!-- Nav bar located in PHP folder -->
<?php
include('PHP/nav.php');
?>
<body>
<h2>Welcome!</h2>
<p>Please text this number to get started!</p>
<p>441618502075</p>
</body>
<!-- Footer bar located in PHP folder -->
<?php
include('PHP/footer.php');
?>
</html>