-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
187 lines (152 loc) · 5.72 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<title>Frontend Mentor | Huddle landing page with curved sections</title>
<style>
.attribution {
font-size: 11px;
text-align: center;
background-color: #00252e;
padding: 1rem;
}
.attribution a {
color: hsl(228, 45%, 44%);
text-decoration: underline;
}
main {
overflow:hidden;
}
</style>
</head>
<body>
<!------------------------------------------------------>
<nav>
<img src="./images/logo.svg" alt="LOGO">
<a href="#"> Try it free</a>
</nav>
<main>
<!------------------------------------------------------>
<section class="header" data-entrance="from-bottom">
<h1> Build The Community Your Fans Will Love </h1>
<p> Huddle re-imagines the way we build communities. You have a voice, but so does your audience. Create
connections with your users as you engage in genuine discussion. </p>
<a href="#">Get Started For Free</a>
</section>
<!------------------------------------------------------>
<section class="preview">
<img src="/images/screen-mockups.svg" alt="Preview" class="mockup" data-entrance="from-bottom">
<div class="users" data-entrance="from-left">
<div class="child">
<img src="/images/icon-communities.svg" alt="">
<h3>1.4k+</h3>
<p>Communities Formed</p>
</div>
<div class="child">
<img src="/images/icon-messages.svg" alt="">
<h3>2.7m+</h3>
<p>Message Sent</p>
</div>
</div>
</section>
<!------------------------------------------------------>
<section class="grow" data-entrance="from-right">
<img src="/images/bg-section-top-desktop-1.svg" alt="" class="bg">
<div class="content ">
<div class="description">
<h3> Grow Together </h3>
<p>
Generate meaningful discussions with your audience and build a strong, loyal community.
Think of the insightful conversations you miss out on with a feedback form.
</p>
</div>
<img src="/images/illustration-grow-together.svg" alt="">
</div>
<img src="/images/bg-section-bottom-desktop-1.svg" alt="" class="bg">
</section>
<!------------------------------------------------------>
<section class="flow" data-entrance="from-left">
<img src="/images/illustration-flowing-conversation.svg" alt="">
<div class="description">
<h3> Flowing Conversion </h3>
<p>
You wouldn't paginate a conversation in real life, so why do it online? Our threads have
just-in-time loading for a more natural flow.
</p>
</div>
</section>
<!------------------------------------------------------>
<section class="users" data-entrance="from-right">
<img src="/images/bg-section-top-desktop-1.svg" alt="" class="bg ">
<div class="content ">
<div class="description">
<h3> Your Users </h3>
<p>
It takes no time at all to integrate Huddle with your app's authentication solution. This means,
once signed in to your app, your users can start chatting immediately.
</p>
</div>
<img src="/images/illustration-your-users.svg" alt="">
</div>
<img src="/images/bg-section-bottom-desktop-1.svg" alt="" class="bg ">
</section>
<!------------------------------------------------------>
<section class="build" data-entrance="from-bottom">
<div class="content">
<h3> Ready To Build Your Community? </h3>
<a href="#"> Get Started For Free </a>
</div>
</section>
</main>
<!------------------------------------------------------>
<footer data-entrance="fade">
<img src="/images/bg-footer-top-desktop.svg" alt="" class="bg">
<div class="content">
<div class="left">
<img src="/images/logo-white.svg" alt="">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris nulla quam, hendrerit lacinia
vestibulum a, ultrices quis sem.
</p>
<span>
<i class="gg-phone"></i>
<a href="">+63 960-036-6776</a>
</span>
<span>
<i class="gg-mail"></i>
<a href=""> [email protected] </a>
</span>
<div class="social">
<i class="gg-facebook"></i>
<i class="gg-instagram"></i>
<i class="gg-twitter"> </i>
</div>
</div>
<div class="right">
<h3>NEWSLETTER</h3>
<p>
To recieve tips on how to grow your community, sign up to our weekly newsletter. We’ll never
send you spam or pass on your email address
</p>
<div class="form">
<input type="text" name="" id="">
<a href="#">Subscribe</a>
</div>
</div>
</div>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.BanguisMV.wtf" target="_blank">Dius Montenegro</a>.
</p>
</footer>
<script src="./js/scroll-entrance.js"></script>
</script>
</body>
</html>