-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (132 loc) · 5.08 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"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | Huddle landing page with curved sections</title>
</head>
<body>
<nav class="nav-bar">
<div class="logo-box">
<img src="images/logo.svg" alt="" />
</div>
<div class="nav-bar-btn">
<button class="nav-btn">Try It Free</button>
</div>
</nav>
<header class="header">
<h1 class="header-heading">Build the community your fans will love</h1>
<p class="header-para">
Huddle re-imagines the way we build communities. You have a <br />
voice, but so does your audience. Create connections with your<br />
users as you engage in genuine discussion.
</p>
<button class="header-btn">Get Started for free</button>
</header>
<main class="main">
<img class="main-img" src="images/screen-mockups.svg" alt="tun-tun" />
</main>
<div class="about">
<div class="about-1">
<img class="about-img" src="images/icon-communities.svg" alt="" />
<h4 class="about-heading">1.4k+</h4>
<p class="about-para">Communities Formed</p>
</div>
<div class="about-1">
<img class="about-img" src="images/icon-messages.svg" alt="" />
<h4 class="about-heading">2.7m+</h4>
<p class="about-para">Messages Sent</p>
</div>
</div>
<div class="feature">
<div class="feature-box">
<div class="feature-text">
<h4 class="feature-heading">Grow Together</h4>
<p class="feature-para">Generate meaningful discussions with your audience and build a <br>
strong, loyal community, Think of the insightful conversations you <br>
miss out on with a feedback form.
</p>
</div>
<div class="feature-image">
<img class="feature-img" src="images/illustration-grow-together.svg" alt="">
</div>
</div>
<div class="feature-box">
<div class="feature-image">
<img class="feature-img" src="images/illustration-flowing-conversation.svg" alt="">
</div>
<div class="feature-text">
<h4 class="feature-heading">Flowing Conversations</h4>
<p class="feature-para">You wouldn't paginate a conversation in real life, so why do it online?<br>Our threads have just-in-time loading for a more natural flow.
</p>
</div>
</div>
<div class="feature-box">
<div class="feature-text">
<h4 class="feature-heading">Your Users</h4>
<p class="feature-para">It takes no time at all to integrate Huddle with your app's<br>
authentication solution. This means, once signed in to your app, your<br>
users can start chatting immediately.
</p>
</div>
<div class="feature-image">
<img class="feature-img" src="images/illustration-your-users.svg" alt="">
</div>
</div>
</div>
<div class="footer-head header">
<h4 class="footer-heading header-heading">Ready to Build your Community</h4>
<button class="header-btn">Get Started for free</button>
</div>
<footer class="footer">
<div class="footer-top">
<img class="footer-img" src="images/bg-footer-top-desktop.svg" alt="">
</div>
<div class="footer-main">
<div class="footer-1">
<h5 class="footer-logo">huddle</h5>
<p class="footer-para">Lorem ipsum, dolor sit amet consectetur <br> adipisicing elit. Porro eius consequatur eos <br>assumenda iusto culpa odit et laudantium
</p>
<div class="contact">
<img class="phone" src="images/icon-phone.svg" alt="">
<p class="phone-para"> Phone: +1-543-123-4567</p>
</div>
<div class="contact">
<img class="phone" src="images/icon-email.svg" alt="">
<p class="phone-para">[email protected]</p>
</div>
<div class="social">
<div class="icon-box">
<i class="fa-brands fa-square-facebook icon" style="color: #ffffff;"></i>
</div>
<div class="icon-box">
<i class="fa-brands fa-instagram icon" style="color: #ffffff;"></i>
</div>
<div class="icon-box">
<i class="fa-brands fa-square-twitter icon" style="color: #ffffff;"></i> </div>
</div>
</div>
<div class="footer-2">
<h4 class="news">NewsLetter</h4>
<p class="news-para">To recieve tips on how to grow your community,<br>
sign up to our weekly newsletter. We'll never send <br>
you spam or pass on your email address
</p>
<div class="news-input">
<input class="news-main" type="email">
<button class="news-main-button">Subscribe</button>
</div>
</div>
</div>
</footer>
</body>
</html>