-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (99 loc) · 4.5 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
<!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 curved sections</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
<div class="container">
<header>
<img src="images/logo.svg" alt="logo">
<button>Try it free</button>
</header>
<section class="section-buildComunity">
<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 user s as you engage in genuine discussion.</p>
<button>Get Started For Free</button>
<img src="images/screen-mockups.svg" alt="screen mockups">
<div class="comunities">
<div class="comunityLeft">
<img class="imgLeft" src="images/icon-communities.svg" alt="icon comunities">
<h3>1.4k+</h3>
<p>Communities Formed</p>
</div>
<div class="comunityRigth">
<img src="images/icon-messages.svg" alt="icon-messages">
<h3>2.7m+</h3>
<p>Messages Sent</p>
</div>
</div>
</section>
<section class="space-work">
<div class="space1">
<img class="img-middle" src="images/illustration-grow-together.svg" alt="grow together">
<div class="space1-right">
<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>
</div>
<div class="space2">
<img class="img-middle" src="images/illustration-flowing-conversation.svg" alt="">
<div class="space2-right">
<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="space1 space3">
<img class="img-middle" src="images/illustration-your-users.svg" alt="">
<div class="space2-right">
<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>
</div>
<p class="p-build">Ready To Build Your Community?</p>
<button>Get Started For Free</button>
</section>
<footer >
<div class="section-footer">
<div class="left">
<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 class="form">
<input type="email" required>
<button>Subscribe</button>
</div>
</div>
<div class="right">
<img src="images/logo.svg" alt="">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris nulla quam, hendrerit lacinia
vestibulum a, ultrices quis sem.</p>
<div class="flex">
<img src="images/icon-phone.svg" alt=""> <p>Phone: +1-543-123-4567</p>
</div>
<div class="flex">
<img src="images/icon-email.svg" alt=""> <p>example@huddle.com</p>
</div>
</div>
</div>
<div class="icons">
<i class="fab fa-facebook"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-twitter-square"></i>
</div>
</footer>
</div>
</body>
</html>