-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
181 lines (174 loc) · 5.95 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
<!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>Huddle page</title>
<!-- fas -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- css -->
<link rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<!-- header start -->
<header class="header">
<nav class="navbar">
<div class="logo-section">
<img src="./images/logo.svg" alt="logo" class="logo" />
</div>
<button class="btn btn-one">Try it free</button>
</nav>
<div class="hero-section">
<div class="hero-left">
<h1 class="hero-title">Build The Community Your Fans Will Love</h1>
<p class="hero-para">
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>
<button class="btn btn-pink">Get Started For Free</button>
</div>
<div class="hero-right">
<div class="hero-image">
<img
src="./images/illustration-mockups.svg"
alt="mockup"
class="hero-img"
/>
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- main start -->
<main>
<!-- card 1 -->
<section class="growth">
<div class="card-growth section">
<div class="growth-left">
<img
src="./images/illustration-grow-together.svg"
alt="growth"
class="growth-img"
/>
</div>
<div class="growth-right">
<h2 class="growth-title">Grow Together</h2>
<p class="growth-para">
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>
</div>
</section>
<!-- card 2 -->
<section class="flowing">
<div class="card-flowing section">
<div class="flowing-left">
<img
src="./images/illustration-flowing-conversation.svg"
alt="flowing"
class="flowing-img"
/>
</div>
<div class="flowing-right">
<h2 class="flowing-title">Flowing Conversations</h2>
<p class="flowing-para">
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>
</div>
</section>
<!-- card 3 -->
<section class="users">
<div class="card-users section">
<div class="users-left">
<img
src="./images/illustration-your-users.svg"
alt="users"
class="users-img"
/>
</div>
<div class="users-right">
<h2 class="users-title">Your Users</h2>
<p class="users-para">
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>
</div>
</section>
<div class="pad">
<section class="cta-card">
<h2 class="cta-title">Ready To Build Your Community?</h2>
<button class="btn btn-cta">Get Started For Free</button>
</section>
</div>
</main>
<!-- main end -->
<!-- footer start -->
<footer class="footer">
<div class="footer-one">
<p class="logo-text"><i class="fa-solid fa-comment-dots"></i> Huddle</p>
<div class="location-container">
<img
src="./images/icon-location.svg"
alt="location"
class="location"
/>
<p class="loc-para">
Lorem ipsum dolor sit amet, consectetur <br />
adipiscing elit, sed do eiusmod tempor <br />
incididunt ut labore et dolore magna aliqua
</p>
</div>
<div class="number-container">
<img src="./images/icon-phone.svg" alt="number" class="number" />
<p class="number-para">+1-543-123-4567</p>
</div>
<div class="email-container">
<img src="./images/icon-email.svg" alt="email" class="email" />
<p class="email-para">[email protected]</p>
</div>
</div>
<div class="footer-two">
<ul class="about">
<li><a href="#" class="about-us">About Us</a></li>
<li><a href="#" class="we-do">What We Do</a></li>
<li><a href="#" class="faq">FAQ</a></li>
</ul>
</div>
<div class="footer-three">
<ul class="career">
<li><a href="#" class="career">Career</a></li>
<li><a href="#" class="blog">Blog</a></li>
<li><a href="#" class="contact">Contact Us</a></li>
</ul>
</div>
<div class="footer-four">
<div class="social-media">
<a href="#"><i class="fa-brands fa-facebook social-icon"></i></a>
<a href=""><i class="fa-brands fa-twitter social-icon"></i></a>
<a href=""><i class="fa-brands fa-instagram social-icon"></i></a>
</div>
<div class="footer-para">
<p class="copyright-para">
© Copyright 2018 Huddle. All rights reserved.
</p>
</div>
</div>
</footer>
<!-- footer end -->
</body>
</html>