-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (132 loc) · 6.9 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
<!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">
<link href="https://fonts.googleapis.com/css?family=Poppins:600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<title>Frontend Mentor | Huddle landing page with alternating feature blocks</title>
</head>
<body>
<header class="header">
<div class="header__logo-box">
<img src="images/logo.svg" alt="huddle-logo" class="header__logo">
<button class="header__logo--btn">Try It Free</button>
</div>
<div class="header__container">
<div class="header__text-box">
<h1 class="header__heading-1">
Build The Community Your Fans Will Love
</h1>
<p class="header__para-1">
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">Get Started For Free</button>
</div>
<div class="header__img-box">
<img src="images/illustration-mockups.svg" alt="illustration of mockup" class="header__img">
</div>
</div>
</header>
<main>
<section class="feature-1 section-container">
<div class="feature-1__text-box section-text-box">
<h2 class="feature-1__heading section-heading">
Grow Together
</h2>
<p class="features-1__para section-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 class="feature-1__img-box section-img-box">
<img src="images/illustration-grow-together.svg" alt="illustration of grow together" class="feature-1-img section-img">
</div>
</section>
<section class="feature-2 section-container">
<div class="feature-2__text-box section-text-box">
<h2 class="feature-2__heading section-heading">
Flowing Conversations
</h2>
<p class="features-2__para section-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 class="feature-2__img-box section-img-box">
<img src="images/illustration-flowing-conversation.svg" alt="illustration of flowing conversation" class="feature-2-img section-img">
</div>
</section>
<section class="feature-3 section-container">
<div class="feature-3__text-box section-text-box">
<h2 class="feature-3__heading section-heading">
Your Users
</h2>
<p class="features-3__para section-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 class="feature-3__img-box section-img-box">
<img src="images/illustration-your-users.svg" alt="illustration of your users" class="feature-3-img section-img">
</div>
</section>
</main>
<div class="sign-up">
<h2 class="sign-up__heading">
Ready To Build Your Community?
</h2>
<button class="sign-up__btn">Get Started For Free</button>
</div>
<footer class="footer">
<div class="footer__logo-box">
<img src="images/white-logo.svg" alt="huddle footer-logo" class="footer__logo">
</div>
<div class="flex-container">
<div class="footer__contact">
<p class="footer__contact--loction flex">
<img src="images/icon-location.svg" alt="loction icon" class="footer__loction--icon"><span class="icon-para a"> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</span>
</p>
<p class="footer__contact--phone flex">
<img src="images/icon-phone.svg" alt="phone icon" class="footer__phone--icon u-center"><span class="icon-para"> +1-543-123-4567</span>
</p>
<p class="footer__contact--email flex">
<img src="images/icon-email.svg" alt="email icon" class="footer__email--icon u-center"><span class="icon-para"> [email protected]</span>
</p>
</div>
<div class="footer__navigation--1 footer__navigation">
<ul class="footer__list">
<li class="footer__item"><a href="#" class="footer__link">About Us</a></li>
<li class="footer__item"><a href="#" class="footer__link">What We Do</a></li>
<li class="footer__item"><a href="#" class="footer__link">FAQ</a></li>
</ul>
</div>
<div class="footer__navigation--2 footer__navigation">
<ul class="footer__list">
<li class="footer__item"><a href="#" class="footer__link">Career</a></li>
<li class="footer__item"><a href="#" class="footer__link">Blog</a></li>
<li class="footer__item"><a href="#" class="footer__link">Contact Us</a></li>
</ul>
</div>
<div class="footer__social--icon">
<a href="#" class="icon-link footer__link">
<ion-icon name="logo-facebook" class="icon-b"></ion-icon>
</a>
<a href="#" class="icon-link">
<ion-icon name="logo-twitter" class="icon-b"></ion-icon>
</a>
<a href="#" class="icon-link">
<ion-icon name="logo-instagram" class="icon-b"></ion-icon>
</a>
</div>
</div>
<div class="footer__copyrgt--box">
<p class="footer__copyrgt">© Copyright 2018 Huddle. All rights reserved.</p>
</div>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank" class="a-footer">Frontend Mentor</a> Coded by <a href="#" class="a-footer">Prem</a>
</p>
</footer>
</body>
</html>