forked from hackyourfuturecanada/Week5-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·84 lines (75 loc) · 2.7 KB
/
index.html
File metadata and controls
executable file
·84 lines (75 loc) · 2.7 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
<!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="style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" rel="stylesheet">
<title>Frontend Mentor | Huddle landing page with alternating feature blocks</title>
<!-- 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>
<header>
<h2>Huddle</h2>
Try It Free
<h1>Build The Community Your Fans Will Love</h1>
</header>
<section>
<section class="mockups">
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.
<button>
Get Started For Free
</button>
<img src="images/illustration-mockups.svg" alt="third">
</section>
<section class="grow">
<img src="images/illustration-grow-together.svg" alt="third">
<h2>Grow Together</h2>
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.
</section>
<section class="conversation">
<img src="images/illustration-flowing-conversation.svg" alt="second">
<h2>Flowing Conversations</h2>
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="users">
<img src="images/illustration-your-users.svg" alt="third">
<h2>Your Users</h2>
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.
</section>
Ready To Build Your Community?
<button>
Get Started For Free
</button>
</section>
<section class="buttom">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua
+1-543-123-4567
example@huddle.com
About Us
What We Do
FAQ
Career
Blog
Contact Us
© Copyright 2018 Huddle. All rights reserved.
</section>
<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>