-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (137 loc) · 4.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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">
<title>Frontend Mentor | Huddle landing page with alternating feature blocks</title>
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/1113c9d6b1.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="header-top">
<img src="images/logo.svg" alt="logo">
<button>Try It Free</button>
</div>
<section class="header-bottom">
<div class="header-conteudo">
<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>Get Started For Free</button>
</div>
<div class="imagem-header">
<img src="images/illustration-mockups.svg">
</div>
</section>
</header>
<main>
<div class="secoes">
<div class="conteudo-main">
<h2>Grow Together</h2>
<p>
Generate meaningful discussions with your audience and build a strong, loyal community.
Think of the insightful conversations you miss out on with a feedback form.
</p>
</div>
<div class="imagem-main">
<img src="images/illustration-grow-together.svg">
</div>
</div>
<div class="secoes">
<div class="conteudo-main">
<h2>Flowing Conversations</h2>
<p>
You wouldn't paginate a conversation in real life, so why do it online? Our threads
have just-in-time loading for a more natural flow.
</p>
</div>
<div class="imagem-main" id="imagem-2">
<img src="images/illustration-flowing-conversation.svg">
</div>
</div>
<div class="secoes">
<div class="conteudo-main">
<h2>Your Users</h2>
<p>
It takes no time at all to integrate Huddle with your app's authentication solution.
This means, once signed in to your app, your users can start chatting immediately.
</p>
</div>
<div class="imagem-main">
<img src="images/illustration-your-users.svg">
</div>
</div>
</main>
<section class="conteudo-externo">
<aside>
<h1>Ready To Build Your Community?</h1>
<button>Get Started For Free</button>
</aside>
</section>
<footer>
<img src="images/logo.svg" alt="logo">
<section class="container-footer">
<div class="footer-secoes">
<ul>
<li>
<a href="#">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua
</a>
</li>
<li>
<a href="#">+1-543-123-4567</a>
</li>
<li>
<a href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
</div>
<div class="footer-secoes">
<ul>
<li>
<a href="#">About Us</a>
</li>
<li>
<a href="#">What We Do</a>
</li>
<li>
<a href="#">FAQ</a>
</li>
</ul>
</div>
<div class="footer-secoes">
<ul>
<li>
<a href="#">Career</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">Contact Us</a>
</li>
</ul>
</div>
<div class="footer-secoes" id="redes-sociais">
<ul>
<li>
<i class="fa-brands fa-facebook-f"></i>
</li>
<li>
<i class="fa-brands fa-twitter"></i>
</li>
<li>
<i class="fa-brands fa-instagram"></i>
</li>
</ul>
</div>
</section>
<p>© Copyright 2018 Huddle. All rights reserved.</p>
</footer>
</body>
</html>