blob: d00476697f798537a5ea04d727116346916d99d4 (
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
29
30
31
32
33
34
|
<html>
<head>
<title>Yahtzee</title>
<link rel='stylesheet' href='yahtzee.css'/>
</head>
<body>
<h1 id='main_head'></h1> <!--Head inserted via make_head()-->
<a href='mode_select.html'>
<div class='selector readybox'>
Click Here if You Already Know How to Play
</div>
</a>
<a href='instructions.html'>
<div class='selector helpbox'>
Click Here to Learn How to Play
</div>
</a>
<script type="text/javascript">
function rand() {
return Math.ceil(Math.random()*6);
}
function make_head(header){
return `<img class='small_dice' src='${rand()}.png'> ${header} <img class='small_dice' src='${rand()}.png'>`;
};
document.getElementById('main_head').innerHTML = make_head("Welcome to Yahtzee");
</script>
</body>
</html>
|