-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (106 loc) · 4.34 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
<!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="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/57201b0ab6.js" crossorigin="anonymous"></script>
<title>Landing page with curved sections</title>
</head>
<body>
<div class="wrapper">
<nav>
<img src="images/logo.svg" alt="Huddle logo" style="height: 2em;">
<a href="#" class="btn">Try it Free</a>
</nav>
<div class="banner">
<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 href="#" class="cta">Get Started For Free</a>
</div>
<img src="images/screen-mockups.svg" alt="screen mockups" style="width: 80%; margin:auto">
<div class="split">
<div>
<img src="images/icon-communities.svg" alt="icon of commnunities">
<h2>1.4k+</h2>
<p>Communities Formed</p>
</div>
<div>
<img src="images/icon-messages.svg" alt="icon of messages">
<h2>2.7m+</h2>
<p>Messages Sent</p>
</div>
</div>
<section>
<div class="ribbon ribbon-1">
<div>
<h3>Grow Together</h3>
<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>
<img src="images/illustration-grow-together.svg" alt="illustration of work colleagues">
</div>
<div class="ribbon ribbon-2">
<img src="images/illustration-flowing-conversation.svg" alt="illustration of people sitting at a table talking">
<div>
<h3>Flowing Conversations</h3>
<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="ribbon ribbon-3">
<div>
<h3>Your Users</h3>
<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>
<img src="images/illustration-your-users.svg" alt="illustration of users posting">
</div>
</section>
<div class="banner">
<h1>Ready To Build Your Community?</h1>
<a class="cta" href="#">Get Started For Free</a>
</div>
<footer>
<div class="footer">
<div>
<div>
<h2>Newsletter</h2>
<p>To recieve tips on how to grow your community, sign up to our weekly newsletter. We’ll never send you
spam
or pass on your email address</p>
</div>
<form action="#">
<input required type="text" onfocus="this.value=''">
<button type="submit">Subscribe</button>
</form>
</div>
<div>
<img src="images/logo.svg" alt="Huddle logo">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris nulla quam, hendrerit lacinia vestibulum a,
ultrices quis sem.</p>
<p><i class="fas fa-phone-alt"></i> Phone: +1-543-123-4567</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<div class="links">
<a href="#"><i class="fab fa-facebook-square"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter-square"></i></a>
</div>
</div>
</div>
</div>
</footer>
<div style="text-align: center;">
<p>Challenge by <a
href="https://www.frontendmentor.io/challenges/huddle-landing-page-with-curved-sections-5ca5ecd01e82137ec91a50f2"
target="_blank">Frontend Mentor</a>.
Coded by <a href="https://kristacalleja.github.io/">Krista Calleja | UI Developer</a>.</p>
</div>
<script src="custom.js"></script>
</body>
</html>