-
Notifications
You must be signed in to change notification settings - Fork 0
/
parallax.html
65 lines (62 loc) · 2.46 KB
/
parallax.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parallax</title>
<link rel="stylesheet" href="css/parallax.css">
</head>
<body>
<section class="parallax parallax-header">
<h1>The Neighborhoods of Cleveland</h1>
<!-- <p>
A front end developer in Cleveland, Ohio
</p> -->
</section>
<section class="buffer"></section>
<section class="parallax parallax-content">
<div class="card">
<div class="img"></div>
<h3>Ohio City</h3>
<p>
A trendy dining and entertainment hub centered on the main strip of
West 25th Street, with high-end cocktail bars and beer gardens,
alongside fashionable vegan bistros and gourmet farm-to-table restaurants
</p>
<a href="#">Learn more</a>
</div>
<div class="card">
<div class="img"></div>
<h3>Tremont</h3>
<p>
Arty, residential Tremont has gourmet sandwich bars and craft coffee shops
amid restored Victorian homes, with hip galleries showcasing local talent
and boutiques stocking clothes by edgy young designers.
</p>
<a href="#">Learn more</a>
</div>
<div class="card">
<div class="img"></div>
<h3>Detroit-Shoreway</h3>
<p>
Set along a cliff overlooking Lake Erie, Detroit-Shoreway is home to parks
and trails like the multi-use Red Line Greenway, as well as retail hub Gordon Suare.
The Cleveland Public Theatre stages regular live performances.
</p>
<a href="#">Learn more</a>
</div>
<div class="card">
<div class="img"></div>
<h3>Edgewater</h3>
<p>
Edgewater is known for its Lake Erie frontage, tree-lined streets, and extensive
Edgewater Park, which features 9000 feet of shoreline, dog and swim beaches, boat
ramps, fishing pier, picnic areas and grills and a rentable pavilion.
</p>
<a href="#">Learn more</a>
</div>
</section>
<section class="buffer"></section>
</body>
</html>