-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcommonUI.php
More file actions
34 lines (31 loc) · 819 Bytes
/
commonUI.php
File metadata and controls
34 lines (31 loc) · 819 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
<?php
function startHTML($title) {
?>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script type="text/javascript" src="proj2.js"></script>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="proj2.css" rel="stylesheet" type="text/css"/>
<title><?php echo $title; ?></title>
</head>
<body>
Welcome to our page. This will serve as the hosting site for our Oregon Trail project for CMSC 433.<br>
<a href="https://archive.org/details/msdos_Oregon_Trail_The_1990">Click here to play from an external site</a>
<br>
<br>
<div id="div_wrapper">
<div id="div_game">
<?php
}
?>
<?php
function endHTML() {
?>
</div>
</div>
</body>
</html>
<?php
}
?>