-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
206 lines (136 loc) · 4.53 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!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="stylesheet" href="style.css">
<title>Frontend Mentor | Huddle landing page with curved sections</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<header>
<nav>
<div class="huddle">
<img src="images/icon-messages.svg">
<h1>Huddle</h1>
</div>
<div>
<button class="butn">Try it free</button>
</div>
</nav>
</header>
<div class="content">
<section>
<div class="build-sec">
<div class="build">
<h1>Build The Community Your Fans Will Love</h1>
<p>Huddle re-imagines the way we build communities. You have a<br> voice, but so does
your audience. Create connections with your<br> users as you engage in genuine discussion.
</p>
<button onclick="showAlert()" , class="button-GS">Get Started For Free</button>
</div>
</div>
</section>
<div class="screen mockup">
<img src="images/screen-mockups.svg">
</div>
<div class="number">
<div class="communities">
<img src="images/icon-communities.svg">
<h1>1.4k+</h1>
<p>Communities Formed</p>
</div>
<div class="message">
<img src="images/icon-messages.svg">
<h1> 2.7m+</h1>
<p>Messages Sent</p>
</div>
</div>
<div class="people">
<div class="grow">
<img src="images/illustration-grow-together.svg">
<div id="gt">
<h2> Grow Together</h2>
<p>Generate meaningful discussions with your<br> audience and build a strong, loyal community.<br>
Think of the insightful conversations you miss<br> out on with a feedback form.
</p>
</div>
</div>
<div class="flowing">
<img src="images/illustration-flowing-conversation.svg">
<div id="flow">
<h2> Flowing Conversations</h2>
<p>You wouldn't paginate a conversation in real life,<br> so why do it online? Our threads have
just-in-<br>loading for a more natural flow.
</p>
</div>
</div>
<div class="users">
<img src="images/illustration-your-users.svg">
<div id="use">
<h2>Your Users</h2>
<p>It takes no time at all to integrate Huddle with<br> your app's authentication solution. This means,<br>
once signed in to your app, your users can start<br> chatting immediately.
</p>
</div>
</div>
</div>
<section class="community">
<h2>Ready To Build Your Community?</h2>
<button onclick="showAlert()"), class="button-GS" >Get Started For Free</button>
</section>
<div class="las las">
<div id="news">
<h3>NEWSLETTER</h3>
<p>To recieve tips on how to grow your community,<br> sign up to our weekly newsletter. We’ll never
send<br> you spam or pass on your email address </p>
<form>
<input type="email">
</form>
<button class="special butn">Subscribe</button>
</div>
<div id="footer">
<div class="foot">
<img src="images/icon-messages.svg">
<h1>Huddle</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris nulla quam, hendrerit lacinia
vestibulum a, ultrices quis sem.
</p>
</div>
<div class="contact">
<ul>
<div class="phone">
<img src="images/icon-phone.svg">
<p>Phone: +1-543-123-4567</p>
</div>
<div class="email">
<img src="images/icon-email.svg">
<p>[email protected]</p>
</div>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</p>
</footer>
<script src="ttext.js"></script>
</body>
</html>