-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
169 lines (149 loc) · 5.72 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
<!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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css" />
<title>Huddle </title>
</head>
<body>
<header>
<nav class="navbar">
<ul>
<li>
<a href="#"><img class="logo" src="images/logo.svg" alt="Company logo" /></a>
</li>
<li><a class="btn btn-secondary" href="#">Try It Free</a></li>
</ul>
</nav>
<section class="hero">
<div class="company-info">
<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>
<a class="btn btn-primary" href="#">Get Started For Free</a>
</div>
<div class="mockup">
<img class="hero-image" src="images/illustration-mockups.svg" alt="Hero image" />
</div>
</section>
</header>
<main>
<section class="grow-together container">
<div class="grow-together-image">
<img src="images/illustration-grow-together.svg" alt="" />
</div>
<div class="grow-together-text">
<h2>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>
</section>
<section class="conversations container">
<div class="conversations-image">
<img src="images/illustration-flowing-conversation.svg" alt="" />
</div>
<div class="conversations-text">
<h2>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>
</section>
<section class="users container">
<div class="users-image">
<img src="images/illustration-your-users.svg" alt="" />
</div>
<div class="users-text">
<h2>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>
</section>
<section class="community container">
<h2>Ready To Build Your Community?</h2>
<a class="btn btn-primary" href="#">Get Started For Free</a>
</section>
</main>
<footer>
<img class="logo-footer" src="images/logo-footer.svg" alt="" />
<div class="container-footer">
<div class="footer-contact">
<div>
<img src="./images/icon-location.svg" alt="" />
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua
</p>
</div>
<div>
<img src="./images/icon-phone.svg" alt="" />
<p>+1-543-123-4567</p>
</div>
<div>
<img src="./images/icon-email.svg" alt="" />
<p>[email protected]</p>
</div>
</div>
<div class="footer-links-left-col">
<ul>
<li>
<a href="#">About Us</a>
</li>
<li>
<a href="#">What We Do</a>
</li>
<li>
<a href="#">FAQ</a>
</li>
</ul>
</div>
<div class="footer-links-right-col">
<ul>
<li>
<a href="#">Career</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">Contact Us</a>
</li>
</ul>
</div>
<div class="social-icons">
<ul>
<li class="facebook">
<a href="#"><i class="fab fa-facebook-f"></i></a>
</li>
<li class="twitter">
<a href="#"><i class="fab fa-twitter"></i></a>
</li>
<li class="instagram">
<a href="#"><i class="fab fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
<p class="copyright">
© Copyright 2018 Huddle. All rights reserved.
</p>
</div>
</footer>
</body>
</html>