-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (46 loc) · 1.91 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
45
46
47
48
49
50
51
52
53
54
55
56
<!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" href="./public/img/favicon-32x32.png">
<title>Frontend Mentor | Huddle landing page with single introductory section</title>
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins|Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<link href="./public/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<!-- CSS -->
<link href="./public/css/style.css" rel="stylesheet" type="text/css">
</head>
<main>
<header>
<img src="./public/img/logo.svg" alt="Huddle"></img>
</header>
<body>
<main>
<div class="container">
<div class="left-side">
<img class="mockup" src="./public/img/illustration-mockups.svg" alt="mockup image"></img>
</div>
<div class="right-side">
<h1>Build The Community 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>Register</button>
<div class="icons">
<a href="#" aria-label="go to facebook profile page"><i class="icon bx bxl-facebook"></i></a>
<a href="#" aria-label="go to twitter profile page"><i class="icon bx bxl-twitter"></i></a>
<a href="#" aria-label="go to instagram profile page"><i class="icon bx bxl-instagram"></i></a>
</div>
</div>
</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://www.frontendmentor.io/profile/ckullo">Bayu Jayasukma</a>.
</p>
</footer>
</body>
</main>
</html>