-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
170 lines (164 loc) · 6.76 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;900&display=swap" rel="stylesheet">
<title>Primeiro desafio Academy</title>
</head>
<body>
<!--header section-->
<header id="header">
<div class="container">
<nav class="navbar">
<a href="#"><img src="img/logo.svg" alt="logo"></a>
<a href="#" class="btnTry">Try It Free</a>
</nav>
<div class="ctnMSG">
<div class="headerMSG">
<h1>Build The Community<br>
Yout Fans Will Love</h1>
<p>
Huddle re-iamgines 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 class="btnGetStarted" href="#">Get Started For Free</a>
</div>
<div class="headerIMG">
<img src="img/illustration-mockups.svg" alt="mockup">
</div>
</div>
</div>
</header>
<!--end header section-->
<!--cards section-->
<section id="cardsSection">
<div class="container">
<div class="cards">
<div class="cardFlex">
<div class="cardMSG">
<h2>Grow Together</h2>
<p>
Generate meaningful discussions with your audience
and a strong, loyal community. Thing of the insightful
conversations you miss out on with feedback form.
</p>
</div>
<div class="cardIMG">
<img src="img/illustration-grow-together.svg" alt="Crescendo juntos">
</div>
</div>
<div class="cardFlex">
<div class="cardIMG">
<img src="img/illustration-flowing-conversation.svg" alt="Crescendo juntos">
</div>
<div class="cardMSG">
<h2>Flowing Conversation</h2>
<p>
You wouldn't paginate a conversation in real life, so
why do it online? Our thread have just-in-time loading
for a more natural flow.
</p>
</div>
</div>
<div class="cardFlex">
<div class="cardMSG">
<h2>Your Users</h2>
<p>
It takes no time altt to integrate Hunddle with your app's
authentication solution. This means, once signed in to
your app, your users can start catting immediately.
</p>
</div>
<div class="cardIMG">
<img src="img/illustration-your-users.svg" alt="Crescendo juntos">
</div>
</div>
</div>
</div>
</section>
<!--end cards section-->
<!--card upside footer section-->
<section id="cardReadyToBuild">
<div class="container">
<div class="cardContainer">
<div class="card">
<h2>Ready To Build Your Community?</h2>
<a class="btnGetStarted" href="#">Get Started For Free</a>
</div>
</div>
</div>
</section>
<!--end card upside footer section-->
<!--footer section-->
<footer id="footer">
<div class="container contFlex">
<!--first col footer section-->
<div class="logo">
<a href="#"><img src="img/logo.svg" alt="logo" class="footerLogo"></a>
</div>
<div class="footerCol">
<div class="footerItem">
<img src="img/icon-location.svg" alt="map">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa laboriosam porro
maiores reprehenderit quam perferendis nobis! Incidunt molestias sint nostrum
</p>
</div>
<div class="footerItem">
<img src="img/icon-phone.svg" alt="">
<p>+55 62 9 9999-9999</p>
</div>
<div class="footerItem">
<img src="img/icon-email.svg" alt="">
<p>[email protected]</p>
</div>
</div>
<!--end first col footer section-->
<!--second col footer section-->
<div class="footerCol">
<div class="footerItem half">
<a href="#">About Us</a>
</div>
<div class="footerItem half">
<a href="#">What We Do</a>
</div>
<div class="footerItem half">
<a href="#">FAQ</a>
</div>
<div class="footerItem half">
<a href="#">Career</a>
</div>
<div class="footerItem half">
<a href="#">Blog</a>
</div>
<div class="footerItem half">
<a href="#">Contact Us</a>
</div>
</div>
<!--end second col footer section-->
<!--third col footer section-->
<div class="footerCol">
<div class="alignLeft">
<div class="footerItem">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
</div>
<div class="footerItem">
<p class="copy">© Copyright</p>
</div>
</div>
</div>
<!--end third col footer section-->
</div>
</footer>
<!--end footer section-->
</body>
</html>