-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
28 lines (26 loc) · 821 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
<!-- php functions to output html template and navbar -->
<?php
include_once('CommonPhp/MainTags.php');
include_once('CommonPhp/HeaderNavigation.php');
outputHtml("Home Page");
outputHeaderNav("Home")
?>
<!-- sign in and sign up buttons layout -->
<main>
<!-- left side of home page layout -->
<div class="box1">
<h1>Welcome to Memory Master</h1>
<div class="questions">
<ul>How good is your visual memory?</ul>
<ul>How many numbers can you remember in a short amount of time?</ul>
<ul> Test your memory strength and become the Memory Master</ul>
</div>
</div>
<!-- right side ,logo of the game -->
<div class="box2">
</div>
</main>
<?php
include_once('CommonPhp/footer.php');
outputfooter();
?>