-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Huddle landing page with single introductory section</title>
</head>
<body>
<header class="header">
<img class="logo" src="./images/logo.svg" alt="logo">
</header>
<main class="container">
<img class="hero_img" src="./images/illustration-mockups.svg" alt="illustration">
<div class="info">
<h1 class="title">Build The Community Your Fans Will Love</h1>
<p class="description">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>
</main>
<div class="icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
</div>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://asliddinamirov.netlify.app">Asliddin Amirov</a>.
</p>
</footer>
</body>
</html>