-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (42 loc) · 1.68 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
<!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="./sass/main.css">
</head>
<body>
<header><img src="images/logo.svg" alt="Huddle"></header>
<main class="box1">
<img src="images/illustration-mockups.svg" alt="illustration">
<section class="box2">
<h1>Build The Community <br>Your Fans Will Love</h1>
<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>
<a href="#">Register</a>
</section>
</main>
<footer class="box3">
<div class="social">
<a href="https://www.facebook.com/profile.php?id=100042703085911" target="_blank">
<img class="icons" src="icons/logo-facebook.svg" alt="Facebook">
</a>
<a href="https://github.com/GitHub-dev12345" target="_blank">
<img class="icons" src="icons/logo-github.svg" alt="GitHub">
</a>
<a href="https://twitter.com/DevRath57659120" target="_blank">
<img class="icons" src="icons/logo-twitter.svg" alt="Twitter">
</a>
</div>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io/profile/GitHub-dev12345" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/GitHub-dev12345">Dev Rathore</a>.
</p>
</footer>
</body>
</html>