forked from devmentor-pl/task-html-and-css-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
237 lines (236 loc) · 8.59 KB
/
index.html
File metadata and controls
237 lines (236 loc) · 8.59 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="header-container">
<nav class="nav">
<div class="nav__img">
<img class="nav-logo" src="./images/logo.svg" alt="nova logo" />
</div>
<ul class="nav__list">
<li><a class="nav__link" href="#theTeam">The Team</a></li>
<li><a class="nav__link" href="#Pricing">Pricing</a></li>
<li><a class="nav__link" href="#Features">Features</a></li>
</ul>
</nav>
<section class="header__section">
<div class="wrapper">
<h1 class="header-description">Beautiful Free Nova template</h1>
<p class="header-paragraf">
A top notch premium quality template for your next web project.
</p>
<button class="header__button">Download FREE!</button>
</div>
<figure class="header__photo">
<img src="./images/screen.png" alt="next gen app" />
</figure>
</section>
</header>
<main>
<section class="features-section" id="Features">
<h2 class="feature-header">Features</h2>
<div class="features-wrapper">
<article class="feature-article">
<div class="feature-img">
<img src="./images/responsive.svg" alt="phone icon" />
</div>
<h4 class="feature-subtitle">fully responsive</h4>
<p>
Looks amazing on any device: smartphone, tablet, laptop, and
desktop.
</p>
</article>
<article class="feature-article">
<div class="feature-img">
<img src="./images/customizable.svg" alt="phone icon" />
</div>
<h4 class="feature-subtitle">customizable</h4>
<p>
Change the colors, pictures or any of the sections to suit your
needs.
</p>
</article>
<article class="feature-article">
<div class="feature-img">
<img src="./images/design.svg" alt="phone icon" />
</div>
<h4 class="feature-subtitle">slick and beautiful design</h4>
<p>Trendy and fresh design, fits any website.</p>
</article>
</div>
</section>
<aside>
<div class="logos-container">
<img src="./images/logos.png" alt="logo companes" />
</div>
</aside>
<section class="section">
<div class="section-nova">
<figure class="nova-container-img">
<img class="nova-img" src="./images/imac.png" alt="imac computer" />
</figure>
<div class="nova-description">
<div class="nova-description-wrapper">
<h2 class="nova-header">simple and beautiful</h2>
<p>
Use Nova theme for your next web project. It is completely
customizable so you can change any of the sections to fit your
needs. Nova Theme is Free for any kind of use, personal and
commercial. Have fun and good luck!
</p>
</div>
</div>
</div>
</section>
<div class="pricing-container">
<section class="section" id="Pricing">
<div class="header-pricing">
<h2 class="pricing-title">choose your pricing plan</h2>
<p>Pick any of our super affordable pricing plans</p>
</div>
<div class="article-container">
<article class="article-pricing">
<div>
<h4 class="pricing-subtitle">basic</h4>
<p class="pricing-description-amount">$15</p>
<p class="pricing-description">per month</p>
</div>
<div class="pricing-additional">
<p>Up to 7 Projects</p>
<p>2 Additional Developers</p>
</div>
<div>
<button class="pricing-btn">Get Started</button>
</div>
</article>
<article class="article-pricing">
<div>
<h4 class="pricing-subtitle">agency</h4>
<p class="pricing-description-amount">$55</p>
<p class="pricing-description">per month</p>
</div>
<div class="pricing-additional">
<p>Up to 25 Projects</p>
<p>2 Additional Developers</p>
<p>Unlimited Support</p>
</div>
<div>
<button class="pricing-btn">Get Started</button>
</div>
</article>
<article class="article-pricing">
<div>
<h4 class="pricing-subtitle">pro</h4>
<p class="pricing-description-amount">$75</p>
<p class="pricing-description">per month</p>
</div>
<div class="pricing-additional">
<p>Up to 25 Projects</p>
<p>2 Additional Developers</p>
<p>Unlimited Support</p>
<p>1.5GB Disk Space</p>
</div>
<div>
<button class="pricing-btn">Get Started</button>
</div>
</article>
</div>
</section>
</div>
<section class="section" id="theTeam">
<h2 class="team-header">the team</h2>
<div class="team-wrapper">
<article>
<figure>
<img src="./images/cto.png" alt="Johny B Good" />
</figure>
<h4 class="team-title">cto</h4>
<h3>Johny B Good</h3>
<p class="team-description">
The brains behind the whole operation
</p>
<div class="social-container">
<a href="#">
<img
class="social-logo"
src="./images/team-twitter.svg"
alt="logo twitter"
/>
</a>
<a href="#">
<img
class="social-logo"
src="./images/team-facebook.svg"
alt="logo facebook"
/>
</a>
</div>
</article>
<article>
<figure>
<img src="./images/ceo.png" alt="Roll Over Beethoven" />
</figure>
<h4 class="team-title">ceo</h4>
<h3>Roll Over Beethoven</h3>
<p class="team-description">The one that puts it all together</p>
<div class="social-container">
<a href="#">
<img
class="social-logo"
src="./images/team-twitter.svg"
alt="logo twitter"
/>
</a>
<a href="#">
<img
class="social-logo"
src="./images/team-facebook.svg"
alt="logo facebook"
/>
</a>
</div>
</article>
<article>
<figure>
<img src="./images/cfo.png" alt="Chuck Berry" />
</figure>
<h4 class="team-title">cfo</h4>
<h3>Chuck Berry</h3>
<p class="team-description">The guy with his hand on the wallet</p>
<div class="social-container">
<a href="#">
<img
class="social-logo"
src="./images/team-twitter.svg"
alt="logo twitter"
/>
</a>
<a href="#">
<img
class="social-logo"
src="./images/team-facebook.svg"
alt="logo facebook"
/>
</a>
</div>
</article>
</div>
</section>
</main>
<footer class="footer-container">
<p>A free template by</p>
<img src="./images/webscope.svg" alt="logo webscope" />
</footer>
</body>
</html>