-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
161 lines (149 loc) · 5.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./main.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<!-- font awesome cdn -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.css"
integrity="sha512-1hsteeq9xTM5CX6NsXiJu3Y/g+tj+IIwtZMtTisemEv3hx+S9ngaW4nryrNcPM4xGzINcKbwUJtojslX2KG+DQ=="
crossorigin="anonymous"
/>
<title>Huddle</title>
</head>
<body>
<section class="app__hero_section">
<nav>
<div class="app__logo">
<img class="app__logo_img" src="./images/logo.svg" alt="logo" />
</div>
<button class="btn primary">Try It Free</button>
</nav>
<div class="app__hero_section-content">
<div class="app__hero_section_text-info">
<h1>Build The Community</h1>
<h1>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="btn secondary">Get Started For Free</button>
</div>
<div class="app__hero_section_image">
<img
src="./images/illustration-mockups.svg"
alt="illustration mockup image"
/>
</div>
</div>
</section>
<section class="app__features-section">
<div class="app__feature">
<div class="app__feature-info">
<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 class="app__feature-image">
<img
src="./images/illustration-grow-together.svg"
alt="Grow Together"
/>
</div>
</div>
<div class="app__feature">
<div class="app__feature-info">
<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 class="app__feature-image">
<img
src="./images/illustration-flowing-conversation.svg"
alt="Flowing Conversations"
/>
</div>
</div>
<div class="app__feature">
<div class="app__feature-info">
<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 class="app__feature-image">
<img src="./images/illustration-your-users.svg" alt="Your Users" />
</div>
</div>
<div class="app__features_cta">
<h2>Ready To Build Your Community?</h2>
<button class="btn secondary">Get Started For Free</button>
</div>
</section>
<footer>
<div class="app__footer_contact">
<div class="app__footer_logo">
<img src="./images/logo.svg" alt="" />
</div>
<p>
<img src="./images/icon-location.svg" alt="location icon" />
<span class="app__footer_contact-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua
</span>
</p>
<p>
<img src="./images/icon-phone.svg" alt="phone icon" />
<span class="app__footer_contact-text">+1-543-123-4567 </span>
</p>
<p>
<img src="./images/icon-email.svg" alt="email icon" />
<span class="app__footer_contact-text">example@huddle.com </span>
</p>
</div>
<div class="app__footer_links">
<div class="app__footer_link">
<a href="#">About Us</a>
<a href="#">What We Do</a>
<a href="#">FAQ</a>
</div>
<div class="app__footer_link">
<a href="#">Career</a>
<a href="#">Blog</a>
<a href="#">Contact Us</a>
</div>
<div class="app__footer_social_link">
<a href="https://www.linkedin.com/in/richard-emijere-84067bb0/" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://twitter.com/The_Codeinn" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="https://github.com/The-CodeINN" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</div>
<p class="app__footer_copyright">
© Copyright 2018 Huddle. All rights reserved.
</p>
</div>
</footer>
</body>
</html>