-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="../dist/images/favicon-32x32.png">
<script src="https://kit.fontawesome.com/dd2963bf92.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./dist/css/main.css">
<title>Frontend Mentor | Huddle landing page with single introductory section</title>
</head>
<body>
<header class="header">
<img class="header__logo" src="./dist/images/logo.svg" alt="">
</header>
<main>
<section class="main">
<article class="main__img">
<img src="./dist/images/illustration-mockups.svg" alt="mockups-illustration">
</article>
<article class="main__content">
<h1 class="main__content__title">build the community your fans will love</h1>
<p class="main__content__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>
<button class="main__content__btn">register</button>
</article>
</section>
</main>
<footer class="footer">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
</footer>
</body>
</html>