-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
191 lines (121 loc) · 3.77 KB
/
index.html
File metadata and controls
191 lines (121 loc) · 3.77 KB
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
188
189
190
191
<!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="mobile_style.css">
<link rel="stylesheet" href="tablet_style.css">
<link rel="stylesheet" href="desktop_style.css">
<title>Huddle</title>
</head>
<body>
<header>
<div class="top_header">
<a class="logo" href="#">
<img src="./images/logo.svg" alt="Huddle logo">
</a>
<a class="try_button" href="#">
Try It Free
</a>
</div>
<div class="header_flex">
<div class="description">
<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>
<a class="get_started" href="#">Get Started For Free</a>
</div>
<img class="mockups" src="./images/illustration-mockups.svg"
alt="mockups">
</div>
</header>
<main>
<div class="pros1">
<img src="./images/illustration-grow-together.svg" alt="people working">
<div class="pros_descriptions">
<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>
</div>
<div class="pros2">
<img src="./images/illustration-flowing-conversation.svg"
alt="people talking">
<div class="pros_descriptions">
<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>
</div>
<div class="pros3">
<img src="./images/illustration-your-users.svg" alt="another image">
<div class="pros_descriptions">
<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>
</div>
</main>
<div class="sub">
<div class="subscription">
<h2>Ready To Build Your Community?</h2>
<a href="#" class="get_started">Get Started For Free</a>
</div>
<div class="background_band">
</div>
</div>
<footer>
<div class="contact">
<img src="./images/logo.svg" alt="Huddle logo">
<ul>
<li id="address">Lorem ipsum dolor sit amet,<br />consectetur
adipiscing elit, sed do<br />eiusmod tempor
incididunt ut labore et<br />dolore magna aliqua</li>
<li id="phone">+1-543-123-4567</li>
<li id="email">example@huddle.com</li>
</ul>
</div>
<nav>
<a href="#" class="nav1">
<div>About Us</div>
</a>
<a href="#" class="nav2">
<div>What We Do</div>
</a>
<a href="#" class="nav3">
<div>FAQ</div>
</a>
<a href="#" class="nav4">
<div>Career</div>
</a>
<a href="#" class="nav5">
<div>Blog</div>
</a>
<a href="#" class="nav6">
<div>Contact Us</div>
</a>
</nav>
<div class="social_copyright">
<div class="social">
<a class="social_icons_f" href="#"><img src="./images/facebook.svg"
alt="facebook icon"></a>
<a class="social_icons_t" href="#"><img src="./images/twitter.svg"
alt="twitter icon"></a>
<a class="social_icons_i" href="#"><img src="./images/instagram.svg"
alt="instagram icon"></a>
</div>
<h3>© Copyright 2018 Huddle. All rights reserved.</h3>
</div>
</footer>
</body>
</html>