-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
150 lines (133 loc) · 5.64 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
<!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">
<title>Frontend Mentor | Huddle landing page with alternating feature blocks</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/0ca913d916.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<!-- <style>-->
<!-- .attribution { font-size: 11px; text-align: center; }-->
<!-- .attribution a { color: hsl(228, 45%, 44%); }-->
<!-- </style>-->
</head>
<body>
<div class="container">
<header class="header">
<div class="logo">
<img class="logo-image" src="images/logo.svg" alt="Logo" />
</div>
<div class="header-actions">
<button class="header-action">Try It Free</button>
</div>
</header>
<section class="hero-section">
<div class="hero-section-details">
<h2 class="hero-section-item hero-section-heading">Build The Community Your Fans Will Love</h2>
<p class="hero-section-item hero-section-description">
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="hero-section-item hero-section-button">
Get Started For Free
</button>
</div>
<div class="hero-section-image hero-section-item">
<img src="images/illustration-mockups.svg" alt="Illustration Mockups">
</div>
</section>
<section class="features">
<div class="card">
<div class="thumbnail card-item grow-together-image">
<img src="images/illustration-grow-together.svg" alt="Illustration - Grow Together">
</div>
<div>
<h2 class="card-heading card-item">Grow Together</h2>
<p class="card-description card-item">
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="card">
<div class="thumbnail card-item flowing-conversation-image">
<img src="images/illustration-flowing-conversation.svg" alt="Illustration - Flowing Conversation">
</div>
<div>
<h2 class="card-heading card-item">Flowing Conversations</h2>
<p class="card-description card-item">
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="card">
<div class="thumbnail card-item your-users-image">
<img src="images/illustration-your-users.svg" alt="Illustration - Your Users">
</div>
<div>
<h2 class="card-heading card-item">Your Users</h2>
<p class="card-description card-item">
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>
<div class="call-to-action-card">
<h2 class="card-heading card-item call-to-action-heading">Ready To Build Your Community?</h2>
<button class="card-item call-to-action-button">Get Started For Free</button>
</div>
</section>
<footer class="footer">
<div class="contact">
<div class="footer-logo">
<img src="images/logo-white.svg" alt="Logo">
</div>
<div class="contact-details">
<img src="images/icon-location.svg" alt="">
<p class="description">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua</p>
</div>
<div class="contact-details">
<img src="images/icon-phone.svg" alt="">
<p class="description">+1-543-123-4567</p>
</div>
<div class="contact-details">
<img src="images/icon-email.svg" alt="">
<p class="description">[email protected]</p>
</div>
</div>
<div class="footer-links">
<div class="footer-links-group">
<a class="footer-link-item">About Us</a>
<a class="footer-link-item">What We Do</a>
<a class="footer-link-item">FAQ</a>
</div>
<div class="footer-links-group">
<a class="footer-link-item">Career</a>
<a class="footer-link-item">Blog</a>
<a class="footer-link-item">Contact Us</a>
</div>
</div>
<div class="social-links">
<div class="icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
</div>
<p class="copyright">© Copyright 2018 Huddle. All rights reserved.</p>
</div>
</footer>
</div>
<!-- <footer>-->
<!-- <p class="attribution">-->
<!-- Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. -->
<!-- Coded by <a href="#">Your Name Here</a>.-->
<!-- </p>-->
<!-- </footer>-->
</body>
</html>