-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (128 loc) · 6.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Huddle Landing Page</title>
<link rel="stylesheet" href="./assets/styles/style.css">
<script src="https://kit.fontawesome.com/b843b29b13.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="container">
<section class="hero-section">
<section class="logo-try-it-section">
<section class="logo-section">
<img src="./assets/images/logo.svg" alt="huddle-logo pic">
</section>
<button class="try-it-section">
Try It Free
</button>
</section>
<section class="content">
<section class="intro-section">
<section class="intro-info">
<h1>Build The Community <br> 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 class="get-started-btn">Get Started For Free</button>
</section>
<section class="intro-img">
<img src="./assets/images/illustration-mockups.svg" alt="intro-pic">
</section>
</section>
</section>
</section>
<main>
<section class="benefit benefit-type-first">
<section class="benefit-info">
<h1>Grow Together</h1>
<p class="description">
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>
</section>
<section class="benefit-image">
<img src="./assets/images/illustration-grow-together.svg" alt="grow-together pic">
</section>
</section>
<section class="benefit benefit-type-second">
<section class="benefit-info">
<h1>Flowing Conversations</h1>
<p class="description">
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.
</section>
<section class="benefit-image">
<img src="./assets/images/illustration-flowing-conversation.svg" alt="flowing-conversation pic">
</section>
</section>
<section class="benefit benefit-type-first">
<section class="benefit-info">
<h1>Your Users</h1>
<p class="description">
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>
</section>
<section class="benefit-image">
<img src="./assets/images/illustration-your-users.svg" alt="your-users pic">
</section>
</section>
</main>
<footer>
<section class="build-community-section">
<h1>Ready To Build Your Community?</h1>
<button class="get-started-btn">
Get Started For Free
</button>
</section>
<section class="content">
<section class="logo-section">
<img src="./assets/images/logo.svg" alt="huddle-logo pic">
</section>
<section class="footer-content-section">
<section class="company-address-contact-section">
<section class="address">
<img src="./assets/images/icon-location.svg" alt="address icon">
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua</span>
</section>
<section class="contact">
<img src="./assets/images/icon-phone.svg" alt="contact icon">
<span>+1-543-123-4567</span>
</section>
<section class="mail">
<img src="./assets/images/icon-email.svg" alt="mail icon">
<span>[email protected]</span>
</section>
</section>
<section class="pages-link-section">
<section class="left">
<p>About Us</p>
<p>What We Do</p>
<p>FAQ</p>
</section>
<section class="right">
<p>Career</p>
<p>Blog</p>
<p>Contact Us</p>
</section>
</section>
<section class="socials">
<section class="facebook">
<i class="fa-brands fa-facebook-f"></i>
</section>
<section class="twitter">
<i class="fa-brands fa-twitter"></i>
</section>
<section class="instagram">
<i class="fa-brands fa-instagram"></i>
</section>
</section>
</section>
<section class="copyright">© Copyright 2018 Huddle. All rights reserved.</section>
</section>
</footer>
</section>
</body>
</html>