blob: ee5a38551e6f6072b780e44675ff6e91cf9c925d (
plain)
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
include 'scripts.php';
?>
<html>
<head>
<title>Yahtzee</title>
<link rel='stylesheet' href='yahtzee.css'/>
</head>
<body>
<h1>
<?=make_head('Welcome to Yahtzee')?>
</h1>
<a href='mode_select.php'>
<div class='selector readybox'>
Click Here if You Already Know How to Play
</div>
</a>
<a href='instructions.php'>
<div class='selector helpbox'>
Click Here to Learn How to Play
</div>
</a>
</body>
</html>
|