-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (145 loc) · 5.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="https://fonts.googleapis.com/css?family=Vollkorn:400,400i,600,700,900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<title>Zusammen</title>
</head>
<body>
<div class="container">
<!-- Navbar -->
<div class="open-navbar-icon navbar-icon center">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div class="navbar-wrapper">
<nav class="navbar">
<div class="close-navbar-icon navbar-icon center">
<div class="line line-1"></div>
<div class="line line-2"></div>
</div>
<div class="nav-list">
<a href="activities.html" class="nav-link center">Activities</a>
<a href="signup.html" class="nav-link center">Sign Up</a>
<a href="login.html" class="nav-link center">Login</a>
<a href="aboutUs.html" class="nav-link center">About Us</a>
</div>
</nav>
</div>
<!-- End of Navbar -->
<!-- Header -->
<header class="header center">
<div class="header-text">
<h1 class="heading">Together... To Remember...</h1>
<p class="header-paragraph">
"Meet people with the same interest!"
</p>
</div>
<img src="images/logo.png" alt="Header Image" class="header-image" />
<div class="logo">
<h1>
<span class="center">Z</span>
<span class="center">U</span>
<span class="center">S</span>
<span class="center">A</span>
<span class="center">M</span>
<span class="center">M</span>
<span class="center">E</span>
<span class="center">N</span>
</h1>
</div>
</header>
<!-- End of Header -->
<!-- Stories -->
<section class="stories">
<div class="video-container">
<video class="bg-video" autoplay muted loop>
<source src="images/video.mp4" type="video/mp4" />
</video>
</div>
<div class="stories-wrapper">
<div class="story-bg">
<div class="story">
<img src="images/story-img-1.jpg" alt="Customer image" class="story-image" />
<div class="story-text">
<h1 class="story-heading">
These were the best days of this year
</h1>
<p class="story-paragraph">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Architecto quas, repudiandae veritatis nam mollitia cumque
distinctio, quia aperiam aliquid at consequuntur libero
quisquam facilis laborum inventore repellat perspiciatis vel
fugiat molestias recusandae eum necessitatibus quo possimus
aspernatur? Nobis, architecto eaque.
</p>
</div>
</div>
</div>
<div class="story-bg">
<div class="story">
<img src="images/story-img-2.jpg" alt="Customer image" class="story-image" />
<div class="story-text">
<h1 class="story-heading">
I enjoyed this great tour
</h1>
<p class="story-paragraph">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Architecto quas, repudiandae veritatis nam mollitia cumque
distinctio, quia aperiam aliquid at consequuntur libero
quisquam facilis laborum inventore repellat perspiciatis vel
fugiat molestias recusandae eum necessitatibus quo possimus
aspernatur? Nobis, architecto eaque.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End of Stories -->
<!-- Contact -->
<section class="contact">
<h1 class="contact-heading">Contact Us</h1>
<form class="contact-form center">
<div class="input-group">
<label>Full Name *</label>
<input type="text" class="contact-input" placeholder="Enter Your Name" />
</div>
<div class="input-groups">
<div class="input-group">
<label>Email *</label>
<input type="email" class="contact-input" placeholder="Enter Your Email" />
</div>
<div class="input-group">
<label>Phone</label>
<input type="text" class="contact-input" placeholder="Enter Phone Number" />
</div>
</div>
<div class="input-group">
<label>Message</label>
<textarea class="form-textarea" placeholder="Your Message Here..."></textarea>
</div>
<input type="submit" value="Submit" class="form-btn" />
</form>
</section>
<!-- End of Contact -->
<!-- Footer -->
<footer class="footer">
<div class="footer-list">
<a href="activities.html" class="footer-link">Activities</a>
<a href="signup.html" class="footer-link">Sign Up</a>
<a href="login.html" class="footer-link">Login</a>
</div>
<p class="footer-paragraph">
Lorem ipsum dolor sit amet.
</p>
</footer>
<!-- End of Footer -->
</div>
<script src="script.js"></script>
</body>
</html>