-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 978 Bytes
/
index.html
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
<!DOCTYPE html>
<!--
Arianna Biernacki
Student ID: xxxxxxxxx
SYST10199 - Web Programming
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="CSS/Styles.css">
<title>Assignment 1 for Arianna Biernacki</title>
</head>
<body>
<div id="parent"></div>
<hr>
<div id="header">
<h1>Assignment 1<br>
Web Programming<br>
Arianna Biernacki
</h1>
</div>
<hr>
<div id="rules">
<h1>Welcome to Rock, Paper, Scissors!</h1>
<h3>Game Instructions</h3>
<p>1 = rock; 2 = paper; 3 = scissors</p>
</div>
<div id="start">
<input type="button" onclick=window.location.href="rock.html" value="Start!">
</div>
</div>
</body>
</html>