Skip to content

Commit e2855e7

Browse files
committed
huddle landing page: inicio
1 parent dfe18fb commit e2855e7

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

index.html

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<!-- displays site properly based on user's device -->
7+
8+
<link
9+
rel="icon"
10+
type="image/png"
11+
sizes="32x32"
12+
href="./images/favicon-32x32.png"
13+
/>
14+
<link rel="preconnect" href="https://fonts.googleapis.com" />
15+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
16+
<link
17+
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
18+
rel="stylesheet"
19+
/>
20+
<link rel="preconnect" href="https://fonts.googleapis.com" />
21+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
22+
<link
23+
href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap"
24+
rel="stylesheet"
25+
/>
26+
<link rel="stylesheet" href="/style.css" />
27+
28+
<title>
29+
Frontend Mentor | Huddle landing page with single introductory section
30+
</title>
31+
32+
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
33+
<style>
34+
.attribution {
35+
font-size: 11px;
36+
text-align: center;
37+
}
38+
.attribution a {
39+
color: hsl(228, 45%, 44%);
40+
}
41+
</style>
42+
</head>
43+
<body>
44+
<main class="container">
45+
<div class="el--1">
46+
<header class="header">
47+
<img src="/images/logo.svg" alt="" />
48+
</header>
49+
<div class="header-img">
50+
<img src="/images/illustration-mockups.svg" alt="" />
51+
</div>
52+
</div>
53+
<div class="el--2">
54+
<h1>Build The Community Your Fans Will Love</h1>
55+
<p>
56+
Huddle re-imagines the way we build communities. You have a voice, but
57+
so does your audience. Create connections with your users as you
58+
engage in genuine discussion.
59+
</p>
60+
<button>Register</button>
61+
</div>
62+
<footer class="footer">
63+
<div></div>
64+
</footer>
65+
</main>
66+
67+
<footer>
68+
<p class="attribution">
69+
Challenge by
70+
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
71+
>Frontend Mentor</a
72+
>. Coded by <a href="#">Your Name Here</a>.
73+
</p>
74+
</footer>
75+
</body>
76+
</html>

0 commit comments

Comments
 (0)