-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (38 loc) · 1.69 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
<!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">
<title>Frontend Mentor | Huddle landing page with single introductory section</title>
<link rel="stylesheet" href="./styles.css">
<script src="https://kit.fontawesome.com/88bf4dd104.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<image class="header-logo" src="./images/logo.svg" alt="huddle logo"/>
</header>
<main>
<image class="ui-illustration" src="./images/illustration-mockups.svg" alt="preview user interface of huddle"/>
<div class="landing-text">
<h1 class="landing-header">Build The Community Your Fans Will Love</h1>
<p class="landing-body">
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>
<button class="landing-button">Register</button>
</div>
<div class="social-media-links">
<button class="social-media-button"><i class="fa-brands fa-facebook-f"></i></button>
<button class="social-media-button"><i class="fa-brands fa-twitter"></i></button>
<button class="social-media-button"><i class="fa-brands fa-instagram"></i></button>
</div>
</main>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/Tascate">Tascate</a>.
</p>
</footer>
</body>
</html>