-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.54 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
<!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="./ressources/images/favicon-32x32.png">
<title>Frontend Mentor | Huddle landing page with single introductory section</title>
<link rel="stylesheet" href="./ressources/css/index_style_sheet.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body>
<div class="container">
<div class="header">
<img src="./ressources/images/logo.svg" alt="logo">
</div>
<div class="content">
<div class="img_content">
<img src="./ressources/images/illustration-mockups.svg" alt="image">
</div>
<div class="text_content">
<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>
</div>
<div class="footer">
<div class="facebook">
<i class="fa-brands fa-facebook-f"></i>
</div>
<div class="twitter">
<i class="fa-brands fa-twitter"></i>
</div>
<div class="instagram">
<i class="fa-brands fa-instagram"></i>
</div>
</div>
</div>
</body>
</html>