-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (58 loc) · 2.03 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sushi Scrumble!</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://code.jquery.com/jquery-1.12.2.js" integrity="sha256-VUCyr0ZXB5VhBibo2DkTVhdspjmxUgxDGaLQx7qb7xY=" crossorigin="anonymous"></script>
</head>
<body>
<div>
<div class="Boss">
<a href="#" class="enter_link"><h1>Begin Game!</h1></a>
<a href="Instructions.html" class="Instructions"><h1>Instructions</h1></a>
<table class="container">
<tr class ="container" id="column">
<td class="column ingredient" id="cell1">
<img src="./images/rice.jpg" width = 100px />
</td>
<td class="column ingredient" id="cell2">
<img src="./images/sea_weed.png" width = 100px/>
</td>
<td class="column ingredient" id="cell3">
<img src="./images/tuna.jpg" width = 100px/>
</td>
</tr>
<tr class="column" id="column">
<td class="column ingredient" id="cell4">
<img src="./images/shrimp.jpg" width = 100px/>
</td>
<td class="column ingredient" id="cell5">
<img src="./images/salmon.jpg" width = 100px/>
</td>
<td class="column ingredient" id="cell6">
<img src="./images/squid.jpg" width = 100px/>
</td>
</tr>
<tr class="column" id="column">
<td class="column ingredient" id="cell7">
<img src="./images/snapper.jpg" width = 100px/>
</td>
<td class="column ingredient" id="cell8">
<img src="./images/lobster.jpg" width = 100px/>
</td>
<td class="column ingredient" id="cell9">
<img src="./images/scallop.jpg" width = 100px/>
</td>
</tr>
</table>
<br>
<div id="newChoice"></div>
<br>
<div id="scoreboard">Score</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>