forked from amy-liang/goosemood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
25 lines (24 loc) · 837 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
<!DOCTYPE html>
<html>
<?php
require('script.php');
?>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>UW GooseMood</title>
<meta name="description" content="Good goose bad goose">
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito">
</head>
<body>
<h1>UW GooseMood</h1>
<div class="center">
<img id="gooseImg" src="<?php echo $gooseImg; ?>" alt="Where is the goose?" width="300" height ="300">
<p id="moodText"><?php echo $moodText; ?></p>
</div>
</body>
<footer>
<h2 class="footer">Originally by Amy Liang, modified for PHP by Kevin Paxman</h2>
</footer>
</html>