-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
193 lines (161 loc) · 6.91 KB
/
index.html
File metadata and controls
193 lines (161 loc) · 6.91 KB
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>landing-Page</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
</head>
<body>
<nav>
<div class="wrapper">
<div>
<img src="images/logo.svg">
</div>
<div>
<a href="#"><button type="button">Try It Free</button></a>
</div>
</div>
</nav>
<main>
<div class="flex-container-2">
<div class="info">
<h2>Build The Community Your Fans Will Love</h2>
<p>Contrary to popular belief, Lorem Ipsum is
not simply
<br>
random text. It has roots in a piece
of classical Latin
<br>
literature from 45 BC, making
it over 2000 years old.
</p>
<button>Get Started For Free</button>
</div>
<div class=img-holder>
<img src="images/illustration-mockups.svg">
</div>
</div>
</main>
<section>
<div class="flex-container section-1">
<div class="grow">
<h2>Grow Toghether</h2>
<p>It uses a dictionary of over 200 Latin words,
combined with <br>
a handful of model sentence
structures, to generate <br>
Lorem Ipsum which
looks reasonable.
</p>
</div>
<div class="grow-image">
<img src="images/illustration-grow-together.svg">
</div>
</div>
</section>
<section>
<div class="flex-container section-2">
<div class="conversation">
<h2>Flowing Conversations</h2>
<p>It uses a dictionary of over 200 Latin words,
combined with <br>
a handful of model sentence
structures, to generate <br>
Lorem Ipsum which
looks reasonable.
</p>
</div>
<div class="flow-image">
<img src="images/illustration-flowing-conversation.svg">
</div>
</div>
</section>
<section>
<div class="flex-container section-3">
<div class="users">
<h2>Your Users</h2>
<p>It uses a dictionary of over 200 Latin words,
combined with <br>
a handful of model sentence
structures, to generate <br>
Lorem Ipsum which
looks reasonable.
</p>
</div>
<div class="user-image">
<img src="images/illustration-your-users.svg">
</div>
</div>
</section>
<footer>
<div class="static">
<div class="item1">
<ul>
<li>
<img src="images/logo.svg" class="logo">
</li>
<li>
<span>
<i class="fas fa-map-marker-alt"></i>
</span>
Many desktop publishing packages and web page
<br/>
editors now use Lorem Ipsum as
their default model
<br/>
text, and a search
for 'lorem ipsum' will uncover
<br/>
many web
sites still in their infancy.
</li>
<li>
<p><span><i class="fas fa-phone-volume"></i></span>+1 -543-123 -4567</p>
</li>
<li>
<p> <span><i class="fas fa-envelope-square"></i></span>example@huddle.com</p>
</li>
</ul>
</div>
<div class="item-2">
<ul>
<li><p>About us</p></li>
<li><p>What We Do</p></li>
<li><p>FAQ</p></li>
</ul>
</div>
<div class="item-3">
<ul>
<li><p>Blog</p></li>
<li><p>Contact</p></li>
<li><p>Career</p></li>
</ul>
</div>
<div class="item-4">
<ul>
<li>
<i class="fab fa-facebook-messenger"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
</li>
</ul>
<p class="copyrights">© Copyrights 2018 Huddle. All gights reserved</p>
<div class="challenge">
<p>Challenge by <a href="https://www.frontendmentor.io/" target="_blank">Frontend Mentor. </a>Coded by <a href="#">DevChil</a></p>
</div>
</div>
<div class="nested">
<div class="second-nested">
<h2>Ready To Build Your Community?</h2>
<div>
<button>Get It Free</button>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>