-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.41 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="./images/favicon-32x32.png">
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600&display=swap"
rel="stylesheet">
<title>Huddle landing page with single introductory section</title>
</head>
<body>
<div class="logo">
<img src="./images/logo.svg" id="logo">
</div>
<div class="container">
<div class="mock">
<img src="./images/illustration-mockups.svg" id="mockup">
</div>
<div class="messageContainer">
<div class="headTitle">
Build The Community Your Fans Will Love
</div>
<div class="infoPara">
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.
</div>
<button class="button">
<a href="#">Register</a>
</button>
</div>
</div>
</div>
<footer style="font-size: 1.5rem;">
<i class="fab fa-facebook fa-lg"></i>
<i class="fab fa-twitter-square fa-lg"></i>
<i class="fab fa-instagram fa-lg"></i>
</footer>
</body>
</html>