-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.html
More file actions
145 lines (137 loc) · 3.83 KB
/
explore.html
File metadata and controls
145 lines (137 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LocalLoop – Explore</title>
<link rel="stylesheet" href="styles.css">
<!-- INTERNAL STYLESHEET -->
<style>
.explore-hero {
background-color: var(--brown);
color: var(--white);
text-align: center;
padding: 40px 20px;
}
.explore-hero h1 {
margin: 0;
font-size: 36px;
color: var(--gold);
}
.explore-hero p {
color: var(--accent);
font-size: 15px;
margin-top: 8px;
}
.filter-bar {
background-color: var(--white);
padding: 14px 20px;
display: flex;
gap: 12px;
flex-wrap: wrap;
align-items: center;
border-bottom: 1px solid var(--gray);
}
.filter-bar span {
font-size: 13px;
font-weight: bold;
color: var(--brown);
}
.filter-btn {
background-color: var(--accent);
border: 1px solid var(--gold);
color: var(--brown);
padding: 5px 14px;
border-radius: 20px;
cursor: pointer;
font-size: 13px;
font-family: Georgia, serif;
text-decoration: none;
transition: background-color 0.2s;
}
.filter-btn:hover {
background-color: var(--gold);
color: var(--white);
}
.section-label {
padding: 20px 20px 0;
max-width: 1100px;
margin: 0 auto;
}
.section-label h2 {
color: var(--wine);
border-bottom: 2px solid var(--gold);
padding-bottom: 8px;
}
</style>
</head>
<body>
<!-- HEADER -->
<div class="header">
<div class="header-left">
<div class="logo">LocalLoop</div>
<nav class="nav">
<a href="index.html">Home</a>
<a href="explore.html">Explore</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</div>
<div class="secondary-nav">
<a href="#">Boston</a>
<a href="#">New York</a>
<a href="#">SF</a>
</div>
</div>
<div class="explore-hero">
<h1>Explore Local Spots</h1>
<p>Hand-picked places in your city, curated by people who actually live there.</p>
</div>
<div class="filter-bar">
<span>Filter by:</span>
<a class="filter-btn" href="#">All</a>
<a class="filter-btn" href="#">Cafés</a>
<a class="filter-btn" href="#">Bars</a>
<a class="filter-btn" href="#">Shops</a>
<a class="filter-btn" href="#">Restaurants</a>
<a class="filter-btn" href="#">Parks</a>
</div>
<div class="section-label">
<h2>Boston</h2>
</div>
<div class="card-grid">
<div class="card">
<img src="cafe.jpg" alt="The Thinkboo Cup café interior">
<div class="card-body">
<h3>The Thinkboo Cup</h3>
<p>A calm afternoon café known for its honey latte and good vibes. Great for solo work sessions.</p>
<span class="tag">Café</span>
</div>
</div>
<div class="card">
<img src="bar.jpg" alt="Nighttime Lounge interior">
<div class="card-body">
<h3>Nighttime Lounge</h3>
<p>A neighborhood bar with classic cocktails and low lighting. The Old Fashioned here is a must-try.</p>
<span class="tag">Bar</span>
</div>
</div>
<div class="card">
<img src="flowers.jpg" alt="Petal and Stone flower shop">
<div class="card-body">
<h3>Petal & Stone</h3>
<p>Seasonal bouquets and custom arrangements. A local gem for gifts and everyday beauty.</p>
<span class="tag">Flower Shop</span>
</div>
</div>
</div>
<!-- FOOTER -->
<div class="footer">
<p>© 2026 LocalLoop |
<a href="contact.html">Contact Us</a> |
<a href="about.html">About</a>
</p>
<p style="font-size:12px; color: #ccc;">Discover local places worth sharing.</p>
</div>
</body>
</html>