-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
176 lines (168 loc) · 5.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Huddle re-imagines the way we build communities. Create connections with your users as you engage in genuine discussion.">
<meta name="keywords" content="community, discussion, engagement, Huddle">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<title>Frontend Mentor | Huddle landing page with alternating feature blocks</title>
</head>
<body>
<header>
<div class="headiv">
<img class="logoimg" src="logo.svg" alt="Huddle logo">
<button class="headbtn">
Try It Free
</button>
</div>
</header>
<section class="Bannersec">
<div class="bannerimg">
<img class="mobileimg" src="bg-hero-mobile.svg" alt="Mobile Background Images">
<div class="bannerhead">
<div class="banner-text-div">
<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>
<button>
Get Started For Free
</button>
</div>
<div class="banner-img-div">
<img class="ill" src="illustration-mockups.svg" alt="Desktop & Mobile Preview">
</div>
</div>
</div>
</section>
<main>
<section class="articlesec">
<article>
<div class="div1">
<div class="div1img">
<img src="illustration-grow-together.svg" alt="Grow Together">
</div>
<div>
<h2 class="h22">
Grow Together
</h2>
<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>
</div>
<div class="div2">
<div class="div2img">
<img src="illustration-flowing-conversation.svg" alt="Grow Together">
</div>
<div>
<h2 class="h22">
Flowing Conversations
</h2>
<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>
</div>
<div class="div3">
<div>
<h2 class="h21">
Your Users
</h2>
<div>
<img src="illustration-your-users.svg" alt="Grow Together">
</div>
<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>
</div>
<div class="desktopdiv">
<div>
<h2 class="h21">
Your Users
</h2>
<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>
<div class="desktopdivimg">
<img src="illustration-your-users.svg" alt="Grow Together">
</div>
</article>
</section>
<section class="comsec">
<div class="comdiv">
<h3>
Ready To Build Your Community?
</h3>
<button>
Get Started For Free
</button>
</div>
</section>
<section class="lastsec">
<div class="im">
<img src="Logowhite.jpg" alt="Huddle Logo">
</div>
<div class="lastdiv">
<div class="add">
<address>
<ul>
<li class="ab">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
labore et dolore
magna aliqua.</li>
<li>+1-543-123-4567</li>
<li>example@fylo.com </li>
</ul>
</address>
</div>
<div class="lastdiv1">
<ul class="ul1">
<li>About Us</li>
<li>What We Do</li>
<li>FAQ</li>
</div>
<div class="lastdiv2">
<ul>
<li>Career</li>
<li>Blog</li>
<li>Contact Us</li>
</ul>
</div>
<div class="soc">
<img class="social" src="social.png" alt="">
</div>
</div rel="lastdiv">
<p class="copyright">© Copyright 2018 Huddle. All rights reserved.</p>
</section>
</main>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.linkedin.com/in/deepistics/">Saifullah Shaukat</a>.
</p>
</footer>
</body>
</html>