-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.html
More file actions
169 lines (156 loc) · 3.37 KB
/
Copy pathresponsive.html
File metadata and controls
169 lines (156 loc) · 3.37 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<head>
<title>Antonio's Pizza Providence</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="mainNavBar">
<img width="150" src="antonios.gif" />
<div class="mainNavBarItem" id="isSelected">
<p>
Order Online
</p>
</div>
<div class="mainNavBarItemSub">
<p>
Gift Cards
</p>
</div>
<div class="mainNavBarItemSub">
<p>
About
</p>
</div>
<div class="mainNavBarItem">
<p>
Track My Order
</p>
</div>
<div class="mainNavBarItemSub">
<p>
Sign In & Earn Rewards
</p>
</div>
<div class="mainNavBarItem" id="more">
<p>
See More
</p>
</div>
<div id="hamburgerMenu">
<div style="width: 40px; height: 5px; border-radius: 5px; background: white; margin-bottom: 5px;"></div>
<div style="width: 40px; height: 5px; border-radius: 5px; background: white; margin-bottom: 5px;"></div>
<div style="width: 40px; height: 5px; border-radius: 5px; background: white; margin-bottom: 5px;"></div>
</div>
</div>
<div id="outerContainer">
<div id="mainContentContainer">
<div id="subNavBar">
<div class="subNavBarItem" id="isBrowsing">
<p>
Browse All
</p>
</div>
<div class="subNavBarItem">
<p>
Specials
</p>
</div>
<div class="subNavBarItem">
<p>
Signature Pizzas
</p>
</div>
<div class="subNavBarItem">
<p>
Popular
</p>
</div>
<div class="subNavBarItem">
<p>
Build Your Own
</p>
</div>
<div class="subNavBarItem">
<p>
Sicilian
</p>
</div>
</div>
<div id="metaContainer">
<div id="back">< Back</div>
<select id="filter">
<option>Filter By</option>
</select>
<input id="search" type=text value="Find your favorite pizza" />
</div>
<div id="pizzaContainer">
<script src="pizzaMenu.js"></script>
</div>
<div id="checkoutFooter">
CHECKOUT
</div>
</div>
<div id="sideBar">
<div id="sideBarLabel">
<div>My Order:</div>
</div>
<div id="orderItems">
<script src="ordered.js"></script>
</div>
<div id="subtotal">
<div id="subtotalLabel">
SUBTOTAL:
</div>
<div id="subtotalCost">
$35.55
</div>
</div>
<div id="storeLabel">My Store:</div>
<select id="store">
<option>Providence, Rhode Island</option>
</select>
<div id="loginContainer">
<button class="joinButton">
LOG IN
</button>
<button class="joinButton">
CREATE AN ACCOUNT
</button>
</div>
<div id="addressContainer">
<div id="addressLabel">
My Address:
</div>
<div id="changeAddress">
(CHANGE)
</div>
<div id="address">
1234 Pizza Avenue
<br />
Providence, Rhode Island 02912
</div>
</div>
<div id="serviceMethodContainer">
<div id="serviceMethodLabel">
Service Method:
</div>
<div id="serviceMethodChooser">
<div id="delivery">
<input type=radio>
Delivery
</input>
</div>
<div id="carryout">
<input type=radio>
Carry-Out
</input>
</div>
</div>
</div>
<button id="checkoutButton">
CHECKOUT
</button>
</div>
</div>
</body>
</html>