-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<title>Document</title>
</head>
<body>
<main>
<section class="community">
<h2 class="community__title">Join our community</h2>
<p class="community__guarantee">30-day hassie-free money back guarantee</p>
<p class="community__message community__message--large">Gain access to our full library of tutorials along with expert code reviews.</p>
<p class="community__message community__message--large">Perfect for any developers who are serious about honing their skills.</p>
</section>
<section class="subscription">
<h2 class="subscription__title">Monthly subscription</h2>
<div class="subscription__price-info">
<span class="subscription__price">$29</span>
<span class="subscription__date">per month</span>
</div>
<p class="subscription__day">Full access for less than $1 a day</p>
<a href="#" class="subscription__sign-up">Sign up</a>
</section>
<section class="why-us">
<h2 class="why-us__title">Why us</h2>
<ul class="why_us_benefits">
<li class="why_us_benefits-item">Tutorials by industry experts</li>
<li class="why_us_benefits-item">Peer & expert code review</li>
<li class="why_us_benefits-item">Coding exercises</li>
<li class="why_us_benefits-item">Access to our GitHub repos</li>
<li class="why_us_benefits-item">Community forum</li>
<li class="why_us_benefits-item">Flashcards decks</li>
<li class="why_us_benefits-item">New videos every week</li>
</ul>
</section>
</main>
</body>
</html>