-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (98 loc) · 3.76 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head lang = "eng">
<meta
name="viewport"
content= "width=device-width, initial-scale=1.0"
/>
<title>South Village Run Club</title>
<link
rel = "stylesheet"
href = "./style.css"
/>
</head>
<body>
<!--Nav Bar-->
<header>
<ul>
<li><a href = "">Events</a></li>
<li><a href = "">Results</a></li>
<li><a href = "">Partnering Resturants</a></li>
</ul>
</header>
<!--Title Section-->
<main>
<div class = "Title">
<h1>South Village Run Club</h1>
</div>
<div class = "Description">
<h2>Meet Up. Work Out. Celebrate.</h2>
<p>
Come join our vibrant community whose focus is training hard and enjoying local post-workout cuisine - guilt-free! <br>
South Village Run Club is a free MeetUp group sponsored by <a href = "#">City Shoes</a>.
</p>
</div>
<!--First Batch of Images-->
<div class = "images1">
<ul>
<li>
<img
src = "https://th.bing.com/th/id/OIP.-9wMDWfvT5XQuHPMQFVvxQHaEK?rs=1&pid=ImgDetMain"
/>
</li>
<li>
<img
src = "https://th.bing.com/th/id/OIP.67FxFAZ1ZNB9cViPs5xjsgHaFH?rs=1&pid=ImgDetMain"
/>
</li>
<li>
<img
src = "https://images.pexels.com/photos/2402734/pexels-photo-2402734.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260"
/>
</li>
</ul>
</div>
<!--Quote Breakup-->
<div class = "quote">
<h2> "I build my weeknight plans around their events. I can exercise and meet new people every week!" </h2>
<h5> -Bryce R. - financial advisor/frequent runner since 2018</h5>
</div>
<!--Second Batch of Images-->
<div class = "images2">
<ul>
<li>
<img
src = "https://thebeaconauburn.com/wp-content/uploads/2021/08/A-Group-of-People-Eating-Food-at-a-Restaurant.jpeg"
/>
</li>
<li>
<img
src = "https://th.bing.com/th/id/OIP.4VBdkQRv-V95-3-_PR-IqQHaEo?rs=1&pid=ImgDetMain"
/>
</li>
<li>
<img
src = "https://media.istockphoto.com/photos/two-couples-eating-in-a-restaurant-picture-id186745818?k=6&m=186745818&s=170667a&w=0&h=Pbv2qArU2hmdCyDvgpDOnt0_ptHUN0EK1uxMnXqkbg0="
/>
</li>
</ul>
</div>
<!--Closign Section-->
<div class = "fun">
<h1>Come Join the Fun</h1>
<img
src = "https://st.focusedcollection.com/16485780/i/1800/focused_199749378-stock-photo-runner-crossing-race-finish-line.jpg"
/>
<h1>We meet every evening in the city square at 7PM!</h1>
</div>
<!--Bottom Of Page-->
<footer>
<ul>
<li><a href = "">Events</a></li>
<li><a href = "">Results</a></li>
<li><a href = "">Partnering Resturants</a></li>
</ul>
</footer>
</main>
</body>
</html>