-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (119 loc) · 5.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Startup Landing Page</title>
<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="stylesheet" href="css/styles.css">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/f49e2339de.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="header">
<img class="header-logo header-item" src="images\logo.svg" alt="Huddle-logo" title="Huddle Logo">
<a class="light-btn header-item" href="https://www.google.com">Try It Free</a>
</div>
<div class="top-section">
<h1 class="main-heading">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 class="dark-btn" href="https://www.google.com">Get Started For Free</a>
</div>
<img class="test" src="images\screen-mockups.svg" alt="screen mockups" title="screen mockups">
<div class="stats">
<div class="stats-div-wrapper">
<div class="stats-div">
<img src="images\icon-communities.svg" alt="communities icon">
<h1 class="stats-heading">1.4k+</h1>
<p>Communities Formed</p>
</div>
</div>
<div class="stats-div-wrapper">
<div class="stats-div">
<img src="images\icon-messages.svg" alt="messages icon">
<h1 class="stats-heading">2.7m+</h1>
<p>Messages Sent</p>
</div>
</div>
</div>
<img class="curve-img" src="images\bg-section-top-desktop-1.svg" alt="bg top 1">
<div class="pale-blue-bg">
<div class="feature-block">
<div class="feature-text">
<h1>Grow Together</h1>
<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 class="feature-img" src="images\illustration-grow-together.svg" alt="grow together image">
</div>
</div>
<img class="curve-img" src="images\bg-section-bottom-desktop-1.svg" alt="bg bottom 1">
<div class="feature-block white">
<img class="feature-img" src="images\illustration-flowing-conversation.svg" alt="flowing conversations image">
<div class="feature-text">
<h1>Flowing Conversations</h1>
<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>
<img class="curve-img" src="images\bg-section-top-desktop-2.svg" alt="bg top 2">
<div class="pale-blue-bg">
<div class="feature-block">
<div class="feature-text">
<h1>Your Users</h1>
<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 class="feature-img" src="images\illustration-your-users.svg" alt="your users image">
</div>
</div>
<img class="curve-img" src="images\bg-section-bottom-desktop-2.svg" alt="bg bottom 2">
<div class="ready-section">
<h1 class="ready-heading">Ready To Build Your Community?</h1>
<a class="dark-btn" href="https://www.google.com">Get Started For Free</a>
</div>
<img class="curve-img" src="images\bg-footer-top-desktop.svg" alt="bg footer top">
<div class="bottom-section">
<div class="bottom-grid-container">
<div class="bottom-huddle">
<div class="huddle-sub-div">
<img src="images\logo-footer.jpg" class="logo-footer" alt="huddle logo">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris nulla quam, hendrerit lacinia
vestibulum a, ultrices quis sem.</p>
<img src="images\icon-phone.svg" alt="">
<p class="contact-p">Phone: +1-543-123-4567</p>
<br>
<img src="images\icon-email.svg" alt="">
<p class="contact-p">example@huddle.com</p>
<div class="social-icons">
<a class="fab fa-facebook-square" href="https://www.facebook.com"></a>
<a class="fab fa-twitter-square" href="https://www.twitter.com"></a>
<a class="fab fa-instagram-square" href="https://www.instagram.com"></a>
</div>
</div>
</div>
<div class="bottom-newsletter">
<div class="newsletter-sub-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>
<form class="email-form" action="mailto:spam@example.com" method="post" enctype="text/plain">
<input type="email" name="yourEmail" value="" class="email-input">
<input type="submit" name="" value="Subscribe" class="subscribe-btn">
</form>
</div>
</div>
</div>
<footer>
<p class="attribution">
Project by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
</p>
</footer>
</div>
</body>
</html>