forked from cassandradanger/Porta-HTML-CSS-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (90 loc) · 3.08 KB
/
index.html
File metadata and controls
91 lines (90 loc) · 3.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML CSS Review</title>
<script src="jquery.js"></script>
<script src="scripts.js"></script>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<header>
<h1 id="pizzeriaName">Casie's Awesome Pizzeria</h1>
<img id="pizzaImg" src="pizza.jpg"/>
<a id="pizzaLink" href="https://en.wikipedia.org/wiki/Pizza" target="_blank">what is pizza?</a>
</header>
<main>
<h2>Menu</h2>
<ul id="firstUL">
<li class="pizzaCategory">
<p>Pizzas</p>
<ol>
<li>Cheese</li>
<li>Pepperoni</li>
<li>Veggie</li>
</ol>
<div id="pizzaPrices">
<table>
<thead>
<p>Pizza Prices</p>
<tr>
<th>Pizza Type</th>
<th>12"</th>
<th>14"</th>
<th>16"</th>
<th>18"</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cheese</td>
<td>$12.99</td>
<td>$14.99</td>
<td>$16.99</td>
<td>$18.99</td>
</tr>
<tr>
<td>Meat</td>
<td>$13.99</td>
<td>$15.99</td>
<td>$17.99</td>
<td>$19.99</td>
</tr>
<tr>
<td>Specialty</td>
<td>$14.99</td>
<td>$16.99</td>
<td>$18.99</td>
<td>$20.99</td>
</tr>
</tbody>
</table>
</div>
</li>
<li class="saladCategory">
<p>Salads</p>
<ol>
<li>Caesar</li>
<li>Cobb</li>
<li>Spinach and Cranberry</li>
</ol>
</li>
<li class="dessertCategory">
<p>Desserts</p>
<ol>
<li>Tiramisu</li>
<li>Cheesecake</li>
<li>Icecream</li>
</ol>
</li>
</ul>
<button id="orderBtn">Order Now!</button>
</main>
<footer>
<a href="mailto:casie@primeacademy.io">Contact Us!</a>
<h6>© Casie Siekman 2019</h6>
</footer>
</body>
</html>