This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
62 lines (53 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Huddle landing page with a single introductory section - Frontend Mentor">
<meta name="keywords" content="Frontend Mentor, Huddle landing page, landing page">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
</link>
<!-- FONT AWESOME-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" rel="stylesheet">
</link>
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<title>Huddle landing page with a single introductory section</title>
</head>
<body>
<main class="main-container">
<!-- Header -->
<header>
<!-- Logo -->
<div class="logo">
<div class="logo-img"></div>
</div>
</header>
<!-- Content Container -->
<section class="content-container">
<!-- Illustration Container -->
<section class="illustration-container">
<img class="responsive-img" src="images/illustration-mockups.svg" alt="mockup illustration">
</section>
<!-- Info Container -->
<section class="info-container">
<div>
<h1>Build the community your fans will love</h1>
</div>
<div>
<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>
</div>
<!-- Registration Button -->
<a href="/register" class="registration-button">Register</a>
</section>
</section>
<div class="social-media">
<a href="https://www.facebook.com/" target="_blank" class="media-icon"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/" target="_blank" class="media-icon"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/" target="_blank" class="media-icon"><i class="fab fa-instagram"></i></a>
</div>
</main>
</body>
</html>