-
Notifications
You must be signed in to change notification settings - Fork 1
/
level_two_screen.html
111 lines (103 loc) · 5.47 KB
/
level_two_screen.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!Doctype HTML>
<html>
<head>
<title>PlanetCo</title>
<meta charset="utf-8">
<meta name="description" content="Learn about budgeting by building your own planet.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="planetco.css">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
</head>
<body>
<div class="maincontainer">
<header class="titlecard">
<img src="">
<h1 class="gametitle">PlanetCo</h1>
</header>
<main>
<h2>Level Two</h2>
<p class="direction">Click on an item to add it to your cart!</p>
<div class="gameboard flex-container">
<div class="itemsforsale">
<h3>Items for Sale</h3>
<table>
<tr class="Row1">
<td>
<figure>
<img src="level2pics\river.jpg" class="saleitem river" alt = "river">
<figcaption>River 350 Quatros</figcaption>
</figure>
</td>
<td>
<figure>
<img src="level2pics\rainforest.jpg" class="saleitem tree" alt = "tree">
<figcaption>Rainforest 450 Quatros</figcaption>
</figure>
</td>
<td>
<figure>
<img src="level2pics\tree.jpg" class="saleitem tree" alt = "tree">
<figcaption>Tree 175 Quatros</figcaption>
</figure>
</td>
</tr>
<tr class="Row2">
<td>
<figure>
<img src="level2pics\ocean.jpg" class="saleitem crops" alt = "crop field">
<figcaption>Ocean 400 Quatros</figcaption>
</figure>
</td>
<td>
<figure>
<img src="level2pics\mountain.jpg" class="saleitem mountains" alt = "mountain">
<figcaption>Mountain 200 Quatros</figcaption>
</figure>
</td>
<td>
<figure>
<img src="level2pics\tree.jpg" class="saleitem tree" alt = "tree">
<figcaption>Tree 175 Quatros</figcaption>
</figure>
</td>
</tr>
<tr class="Row3">
<td>
<figure>
<img src="level2pics\gold.jpg" class="saleitem gold" alt = "gold">
<figcaption>Gold 425 quatros</figcaption>
</figure>
</td>
<td>
<figure>
<img src="level2pics\flyingpig.jpg" class="saleitem butterflies" alt = "giant butterflies">
<figcaption>Flying Pig 50 Quatros</figcaption>
</figure>
</td>
<td>
<figure>
<img src="level2pics\dragon.jpg" class="saleitem tree" alt = "tree">
<figcaption>Dragon 175 Quatros</figcaption>
</figure>
</td>
</tr>
</table>
</div>
<div class="budgetpanel">
<h3>Budget: 500 Quatros</h3>
<p class="itembought"></p>
<p class="itembought"></p>
<p class="itembought"></p>
<p class="itembought"></p>
<p class="itembought"></p>
<p class="itembought"></p>
</div>
</div>
<a href="level_two_completed.html"><button>Purchase</button></a>
</main>
</div>
<footer>
© by Taylor Roberts, Aleksandra Charleville, Terance Chambers 2018
</footer>
</body>
</html>