-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
187 lines (183 loc) · 7.42 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" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="images/favicon-32x32.png"
/>
<title>
Frontend Mentor | Huddle landing page with alternating feature blocks
</title>
<link rel="stylesheet" href="src/output.css" />
<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&family=Poppins:wght@600&display=swap"
rel="stylesheet"
/>
</head>
<body
class="m-auto min-h-screen max-w-[1920px] bg-[#edfbfe] bg-contain font-open-sans font-400 md:bg-[url('../images/bg-hero-desktop.svg')] mobile:bg-[url('../images/bg-hero-mobile.svg')]"
>
<main>
<section class="p-body mobile:text-center">
<header class="mb-16 flex items-center justify-between">
<img class="mobile:w-2/5" src="./images/logo.svg" alt="" />
<button
class="rounded-full bg-white py-2 font-600 shadow-lg hover:text-black/40 mobile:px-6 tablet:px-10 laptop:px-12 laptop:py-3"
>
Try It Free
</button>
</header>
<div class="grid items-center md:grid-cols-2">
<div class="md:mr-10 laptop:mr-12">
<h1
class="mb-10 font-bold mobile:text-3xl tablet:text-4xl laptop:text-5xl"
>
Build The Community Your Fans Will Love
</h1>
<p class="mb-10 text-xl">
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="rounded-full bg-pink py-3 font-600 text-white shadow-md shadow-pink/40 hover:bg-pink/50 hover:shadow-lg hover:shadow-pink/40 mobile:mb-6 mobile:px-10 tablet:px-14 laptop:px-16 laptop:py-4"
>
Get Started For Free
</button>
</div>
<img src="images/illustration-mockups.svg" alt="" />
</div>
</section>
<section class="p-body bg-white mobile:text-center">
<div class="grid gap-10 md:gap-16">
<div
class="box-shadow-lg grid-cols-custom grid items-center gap-10 rounded-2xl p-8 md:p-10"
>
<div class="md:p-[15%] mobile:order-2">
<h2
class="mb-4 font-bold md:mb-6 mobile:text-2xl tablet:text-3xl laptop:text-4xl"
>
Grow Together
</h2>
<p class="text-[1rem] text-grayish-blue md:text-xl">
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>
<div
class="box-shadow-lg grid-cols-custom-v2 grid items-center gap-10 rounded-2xl p-8 md:p-10"
>
<div class="order-2 md:p-[15%]">
<h2
class="mb-4 font-bold md:mb-6 mobile:text-2xl tablet:text-3xl laptop:text-4xl"
>
Flowing Conversations
</h2>
<p class="text-[1rem] text-grayish-blue md:text-xl">
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>
<img src="images/illustration-flowing-conversation.svg" alt="" />
</div>
<div
class="box-shadow-lg grid-cols-custom mb-52 grid items-center gap-10 rounded-2xl p-8 md:p-10"
>
<div class="md:p-[15%] mobile:order-2">
<h2
class="mid:mb-6 mb-4 font-bold mobile:text-2xl tablet:text-3xl laptop:text-4xl"
>
Your Users
</h2>
<p class="text-[1rem] text-grayish-blue md:text-xl">
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>
</div>
</section>
</main>
<footer class="p-body bg-very-dark-cyan">
<div class="m-auto -mt-36 text-center md:-mt-44">
<div
class="box-shadow-lg rounded-2xl bg-white md:inline-block md:px-20 md:py-16 mobile:p-6"
>
<h3
class="mid:mb-6 mb-4 font-bold md:mb-10 mobile:text-xl tablet:text-2xl laptop:text-3xl"
>
Ready To Build Your Community?
</h3>
<button
class="rounded-full bg-pink py-3 font-600 text-white shadow-md shadow-pink/40 hover:bg-pink/50 hover:shadow-lg hover:shadow-pink/40 mobile:mb-6 mobile:px-10 tablet:px-14 laptop:px-16 laptop:py-4"
>
Get Started For Free
</button>
</div>
</div>
<div class="mt-20 text-white">
<img class="mb-10" src="images/logo-white.svg" alt="" />
<div>
<ul class="grid gap-4 md:grid-flow-col md:grid-rows-3">
<li>
<a class="flex items-center gap-4" href="#">
<img src="images/icon-location.svg" alt="" />West Bengal, India
</a>
</li>
<li>
<a class="flex items-center gap-4" href="#">
<img src="images/icon-phone.svg" alt="" />+1-543-123-4567
</a>
</li>
<li>
<a class="flex items-center gap-4" href="#">
<img src="images/icon-email.svg" alt="" />
</a>
</li>
<li><a class="hover:underline" href="#">About Us</a></li>
<li><a class="hover:underline" href="#">What We Do</a></li>
<li><a class="hover:underline" href="#">FAQ</a></li>
<li><a class="hover:underline" href="#">Career</a></li>
<li><a class="hover:underline" href="#">Blog</a></li>
<li><a class="hover:underline" href="#">Contact Us</a></li>
<li class="mobile:mt-10">
<ul class="flex gap-4 mobile:justify-center">
<li class="rounded-full border p-2">
<a href="#"
><img class="w-5" src="./images/facebook.svg" alt=""
/></a>
</li>
<li class="rounded-full border p-2">
<a href="#"
><img class="w-5" src="./images/twitter.svg" alt=""
/></a>
</li>
<li class="rounded-full border p-2">
<a href="#"
><img class="w-5" src="./images/instagram.svg" alt=""
/></a>
</li>
</ul>
</li>
</ul>
<p class="mt-14 text-right">
© Copyright 2018 Huddle. All rights reserved.
</p>
</div>
</div>
</footer>
</body>
</html>