-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.85 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
<!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="favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/002a43d35d.js" crossorigin="anonymous"></script>
<title>Frontend Mentor | Huddle landing page with single introductory section</title>
</head>
<body class="body flex col">
<header class="header">
<a href="#" class="logo-link">
<img src="logo.svg" alt="Huddle logo" class="logo">
</a>
</header>
<main class="main flex col">
<img class="mockup" src="illustration-mockups.svg">
<section class="text flex col">
<h1 class="title">Build The Community Your Fans Will Love</h1>
<p class="paragraph">
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">
<button class="register-button">Register</button>
</a>
</section>
</main>
<footer class="footer flex col">
<section class="socials flex">
<a href="#" class="brand-link">
<i class="fa-brands fa-facebook-f fa-xl"></i>
</a>
<a href="#" class="brand-link">
<i class="fa-brands fa-twitter fa-xl"></i>
</a>
<a href="#" class="brand-link">
<i class="fa-brands fa-instagram fa-xl"></i>
</a>
</section>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.frontendmentor.io/profile/DragonFireShield">DragonFireShield</a>.
</p>
</footer>
</body>
</html>