-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (42 loc) · 1.91 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
<!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="/huddle-landing-page-with-single-introductory-section/style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<title> Huddle landing page with single introductory section</title>
</head>
<body>
<main>
<header>
<img src="/huddle-landing-page-with-single-introductory-section/images/logo.svg" alt="Huddle Logo"
class="brand-logo">
<figure>
<img src="/huddle-landing-page-with-single-introductory-section/images/illustration-mockups.svg" alt="Mockup"
class="mockup">
</figure>
</header> <!-- header-->
<section class="lp-content">
<h1 class="lp-title">Build The Community <br> Your Fans Will Love</h1>
<p class="lp-text">
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="register-link">Register</a>
</section> <!-- main- content-->
<div class="socials">
<a href="https://facebook.com" aria-label="facebook"><i class='bx bxl-facebook bx-sm'></i></a>
<a href="https://twitter.com" aria-label="twitter"><i class='bx bxl-twitter bx-sm'></i></a>
<a href="https://instagram.com" aria-label="instagram"><i class='bx bxl-instagram bx-sm'></i></a>
</div>
<footer class="footer">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor.</a> Coded by <a
href="https://github.com/vimode/frontend-mentor-challenges">vimode</a>
</footer>
</main>
</body>
</html>