forked from cameronwp/udportfolio
-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathpizza.html
143 lines (138 loc) · 5.39 KB
/
pizza.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap-grid.css">
</head>
<body>
<div class="container">
<div id="header" class="row">
<div class="col-md-6">
<div class="row">
<div class="col-md-12">
<h1>Cam's Pizzeria</h1>
<div class="row">
<div id="menu" class="col-md-12">
<form action="#randomPizzas">
<input type="submit" value="Menu">
</form>
<form action="#ingredients">
<input type="submit" value="Our Ingredients">
</form>
<form action="#locations">
<input type="submit" value="Locations">
</form>
<form action="#" onsubmit="alert('Thanks for clicking! This button doesn\'t do anything because this is a fake pizzeria :\)')">
<input type="submit" value="Contact Us">
</form>
</div>
</div>
</div>
</div>
</div>
<div id="movingPizzas1" class="col-md-6">
</div>
</div>
<div id="callToAction" class="row">
<div class="col-md-4">
<img src="images/pizzeria.jpg" class="img-responsive"> <!-- Image credit to: http://commons.wikimedia.org/wiki/File:HK_TST_night_%E5%98%89%E8%98%AD%E9%81%93_Granville_Road_restaurant_Paisano's_Pizzeria_pizza_Dec-2013.JPG -->
</div>
<div class="col-md-8">
<div class="row">
<div class="col-md-12">
<h2>We Have Hundreds of Pizza Recipes!</h2>
<p>At Cam's Pizzeria, we know you want options. Pepperoni? Boring. Cheese? No way! Sausage? C'mon, let's get creative.</p>
<p>We have every pizza ingredient imaginable in our kitchen because we know you take choice seriously. Take a look through our menu of hundreds of pizza options and we know that you'll find something you love.</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-push-3">
<form action="#randomPizzas">
<input type="submit" value="Pick a Pizza Now!">
</form>
</div>
</div>
</div>
</div>
<div id="ingredients" class="row">
<div class="col-md-8 col-md-push-2">
<div class="row">
<div class="col-md-12 centered">
<h2>Ingredients!</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>We've scoured the planet for the best pizza ingredients. Our crack team of ingredient specialists are on constant lookout for new and interesting pizza ingredients.</p>
<p>We have classic meats like pepperoni, sausage, and barbecue chicken. But you can find even more fun meats like coppa, kielbasa and soylent green on our menu too.</p>
<p>Not interested in meat? No problem! We love our veggies too :) We have everything from arugula to zucchini.</p>
</div>
</div>
</div>
</div>
<div id="locations" class="row">
<div class="col-md-12">
<h2 style="text-align: center">Locations!</h2>
<div class="row">
<div class="col-md-6">
<h3>Pizza Road</h3>
<p>1800 Pizza Road<br>San Francisco, CA<br>01010<br>555-555-5555</p>
</div>
<div class="col-md-6">
<h3>Classic Pie Way</h3>
<p>999 Classic Pie Way<br>New York, NY<br>00100<br>555-555-5555</p>
</div>
</div>
</div>
</div>
<div id="pizzaGenerator" class="row">
<div class="col-md-12">
<h2 style="text-align: center">Our Pizzas!</h2>
<div class="row">
<div class="col-md-12">
<em>What size pizza would you like? Use the slider below to change pizza sizes.</em>
</div>
<div id="pizzaSize" class="col-md-6">Medium</div>
<div class="col-md-12">
<input id="sizeSlider" type="range" min="1" max="3" value="2" step="1" onchange="resizePizzas(this.value)"></input>
</div>
</div>
<div id="randomPizzas" class="row">
<div id="pizza0" class="randomPizzaContainer" style="width:33.33%;">
<div class="col-md-6">
<img src="images/pizza.png" class="img-responsive">
</div>
<div class="col-md-6">
<h4>The Udacity Special</h4>
<ul>
<li>Turkey</li>
<li>Tofu</li>
<li>Cauliflower</li>
<li>Sun Dried Tomatoes</li>
<li>Velveeta Cheese</li>
<li>Red Sauce</li>
<li>Whole Wheat Crust</li>
</ul>
</div>
</div>
<div id="pizza1" class="randomPizzaContainer" style="width:33.33%;">
<div class="col-md-6">
<img src="images/pizza.png" class="img-responsive">
</div>
<div class="col-md-6">
<h4>The Cameron Special</h4>
<ul>
<li>Chicken</li>
<li>Hot Sauce</li>
<li>White Crust</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="footer" class="col-md-12">Thanks for visiting! © 2014 Udacity</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>