-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGroceries.html
More file actions
185 lines (163 loc) · 3.96 KB
/
Groceries.html
File metadata and controls
185 lines (163 loc) · 3.96 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<head>
<title>Groceries</title>
</head>
<style>
a{
text-decoration: none;
}
body {
font-family: Arial, sans-serif;
}
.Grocery-Container{
height: 100px;
width: 200px;
}
.header{
font-size: 20px;
background-color: #F76902;
color: black;
height: 100%;
}
div {
-webkit-flex: 3;
-ms-flex: 3;
flex: 3;
background-color: white;
padding: 10px;
float: left;
width: 100%;
height: 600px;
overflow-y:auto
}
article{
height: 350px;
}
h2{
font-size: 40px;
text-align: center;
background-color: #F76902;
color: black;
padding: 10px;
}
aside {
float: left;
width: 30%;
height: 300px;
background: white;
padding: 10px;
}
footer{
background-color: #F76902;
padding: 10px;
text-align: center;
color: black;
width: 100%;
position: fixed;
left: 0;
bottom: 0;
}
table, th, td{
border:1px solid black;
}
table{
width: 25%;
float: right;
}
h1{
font-size: 30px;;
}
</style>
<p><b><a href="mainPage.html" >Paw Plan</a></b</p>
<body>
<div class=header>
<h1 style="text-align: center;">Nearby grocery stores</h1>
</div>
<div style="overflow:visible">
<article>
<h1>
Wegmans
</h1>
<img src = "https://www.wegmans.com/wp-content/themes/wegmans/assets/images/WegmansLogo.min.svg" alt = "Wegmans logo">
<table>
<tr>
<td>Description: Wegmans is a general grocery store with many of the groceries you'd need for daily life</td>
</tr>
<tr>
<td><a href="https://www.wegmans.com/" target="_blank">Main Website</a></td>
</tr>
<tr>
<td>Accessibility: Campus Shuttle</td>
</tr>
<tr>
<td>Prices: Not too expenssive, but on the higher end of grocery stores</td>
</tr>
<tr>
<td>Products: A wide range of food and other neccessities.</td>
</tr>
<tr>
<td>Rating: 4.6/5</td>
</tr>
</table>
</article>
<hr>
<article>
<h1>
The Market at Global Village
</h1>
<img src = "https://www.rit.edu/dining/sites/rit.edu.dining/files/2024-03/Logo_The%20Market_170x170_black.png" width = 300px heigt = 300 px alt = "Picture of the Market at Global Village">
<table>
<tr>
<td>Description: A small market at global village with miscellaneous, easy to prepare meals and snacks</td>
</tr>
<tr>
<td><a href="https://www.rit.edu/dining/location/market-global-village#1" target="_blank">Main Website</a></td>
</tr>
<tr>
<td>Accessibility: On Campus</td>
</tr>
<tr>
<td>Prices: Affordable for students, takes dining dollars</td>
</tr>
<tr>
<td>Products: Has many snacks and drinks as well as toiletries and school supplies . Great for emergencies and parties, but not full meals.</td>
</tr>
<tr>
<td>Rating: 4.2/5</td>
</tr>
</table>
</article>
<hr>
<article>
<h1>
The Corner Store
</h1>
<img src = "https://www.rit.edu/dining/sites/rit.edu.dining/files/2024-03/Logo_The%20Corner%20Store_170x170_black.png" width = 300px heigt = 300 px alt = "Picture of the Market at Global Village">
<table>
<tr>
<td>Description: A convenience store in the dorm-side tunnels</td>
</tr>
<tr>
<td><a href="https://www.rit.edu/dining/location/corner-store" target="_blank">Main Website</a></td>
</tr>
<tr>
<td>Accessibility: On Campus</td>
</tr>
<tr>
<td>Prices: Affordable for students, takes dining dollars</td>
</tr>
<tr>
<td>Products: Simmalar to the Market at Global Village, It's a convenience store.</td>
</tr>
<tr>
<td>Rating: 4.1/5</td>
</tr>
</table>
</article>
</div>
</body>
<footer>
<b2>
Copyright 2024
</b2>
</footer>