-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.36 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
<!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">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" type="text/css">
<script src="https://kit.fontawesome.com/0a4c071cb9.js" crossorigin="anonymous"></script>
<title>Frontend Mentor | Huddle landing page with single introductory section</title>
</head>
<body>
<div class="logo">
<img src="images/logo.svg" alt="logo">
</div>
<div class="bg">
<img class="ill-img" src="images/illustration-mockups.svg" alt="">
</div>
<div class="main-text">
<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>
<button class="btn">Register</button>
</div>
<footer class="social-m">
<span class="fb-logo"><i class="fab fa-facebook-f"></i></span>
<span class="tw-logo"><i class="fab fa-twitter"></i></span>
<span class="in-logo"><i class="fab fa-instagram"></i></span>
</footer>
</body>
</html>