-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (35 loc) · 1.5 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
<!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 -->
<!-- ICON -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<!-- FONT -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<!-- MY STYLES -->
<link rel="stylesheet" href="css/styles.css">
<title>Huddle landing page with single introductory section</title>
</head>
<body>
<main id="main">
<h1 class="title">
<img class="logo" src="./images/logo.svg" alt="Logo">
</h1>
<div class="content-left">
<img class="image" src="./images/illustration-mockups.svg" alt="Mockups">
</div>
<div class="content-right">
<h2 class="title">Build The Community Your Fans Will Love</h2>
<p class="text">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>
<a href="#" class="btn">Register</a>
<div class="images">
<img class="image" src="./images/facebook.svg" alt="Facebook">
<img class="image" src="./images/twitter.svg" alt="Twitter">
<img class="image" src="./images/instagram.svg" alt="Instagram">
</div>
</div>
</main>
</body>
</html>