-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (134 loc) · 6.25 KB
/
index.html
File metadata and controls
159 lines (134 loc) · 6.25 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
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>Explore Boston's farmers' markets!</title>
<link rel="stylesheet" type="text/css" href="public/css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Space+Grotesk">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Playfair+Display">
<script src="https://kit.fontawesome.com/3b3578b8a5.js" crossorigin="anonymous"></script>
<script defer src="scripts/scripts.js"></script>
</head>
<body>
<section class="layout">
<header>
<div class="logo">
<h1>markett</h1>
</div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/addaresource">Add a resource</a></li>
</ul>
</nav>
<div class="menu" style="font-size: 1.5em;"><i class="fa-solid fa-bars"></i></div>
</header>
<main>
<div class="content">
<h1>Discover farmers' markets and coops in the greater Boston area:</h1>
<textarea>HTML CSS JAVA</textarea>
<form action="/resadded" method="PUT">
<div class="form-group">
<label>Name of resource: </label><input type="text" id="resName"
placeholder="e.g. Copley Square Farmers Market" class="input-control" required>
</div>
<div class="form-group">
<label>Address: </label><input type="text" id="resAddress" placeholder="e.g. 139 St James Ave"
class="input-control" required>
</div>
<div class="form-group">
<label>Hours of operation: </label><input type="text" id="hoursOpen" placeholder="e.g. Thursday 8am-5pm"
class="input-control" required>
</div>
<div class="form-group">
<label>Season: </label><input type="text" id="season" placeholder="e.g. May 13 - Nov 22, 2022"
class="input-control" required>
</div>
<div class="form-group">
<label>Website: </label><input type ="url" id="resWeb" class="input-control" value="https://www.">
</div>
<label> </label>
<button type="button">Submit</button>
</form>
<div class="allresources">
<div class="resource">
<!-- Template -->
<h3>
Brookline Farmers' Market
</h3>
<p>
<b>Address:</b>
Parking Lot, Centre Street West, Brookline, MA 02446<br>
<b>Hours of operation:</b>
Thursday 1:30-6:30<br>
<b>Season:</b>
first Thursday in June until the last Thursday before Thanksgiving<br>
<b>Website:</b>
<a href="https://www.brooklinefarmersmarket.com/">brooklinefarmersmarket.com</a><br>
</p>
</div>
<div class="resource">
<!-- Template -->
<h3>
<%= resName %>
</h3>
<p>
<b>Address:</b>
<%= resAddress %><br>
<b>Hours of operation:</b>
<%= hoursOpen %><br>
<b>Season:</b>
<%= season %><br>
<b>Website:</b>
<%= website %><br>
</p>
</div>
</div>
<p>"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat."</p>
<p>
<center>
<table>
<thead>
<tr>
<th>User</th>
<th>Points</th>
</tr>
</thead>
<tbody>
<tr>
<td>M.J.</td>
<td>5000</td>
</tr>
<tr>
<td>N.R.</td>
<td>4900</td>
</tr>
<tr>
<td>L.C.</td>
<td>3000</td>
</tr>
<tr>
<td>N.H.</td>
<td>2000</td>
</tr>
</tbody>
</table>
</center>
</p>
</div>
</main>
<!-- </section> -->
<footer>
Designed in Boston
<br>
<div style="font-size: 1.5em;">
<a href="https://github.com/jmahin"><i class="fa-brands fa-github"></i></a>
<a href="https://linkedin.com/in/mahinjo"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://codesquad.org"><i class="fa-solid fa-code"></i></a>
</div>
</div>
</footer>
</section>
</body>
</html>