-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (69 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<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/styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@200&display=swap" rel="stylesheet">
<title>Monthly sale</title>
</head>
<body>
<main class="main">
<section class="section">
<article class="box--light-blue">
<h2 class="box__title-blue">Join our community</h2>
<p class="box__subtitle">30-day, hassle-free money
back guarantee
</p>
<p class="box__text">
Gain acces to our full library of tutorials
along with expert code reviews. Perfect for
any developers who their skills.
</p>
</article>
<article class="box--cyan">
<h2 class="box__title">Monthly Subscription</h2>
<p class="box__price"><span class="box__currency">29</span> <span class="box__periodicity">per month</span></p>
<p class="box__subtitle-2">
Full acces for less <span class="box__currency">1 Dollar day.
</span>
</p>
<a href="#" class="box__buttom">Sign Up</a>
</article>
<article class="box--dark-cyan">
<h2 class="box__title"> Why us</h2>
<ul class="list">
<li class="list__items">
Tutorials by industry experts
</li>
<li class="list__items">
Peer & expert review codes
</li>
<li class="list__items">
Coding & exercises
</li>
<li class="list__items">
Acces to our GitHub repos
</li>
<li class="list__items">
Community forum
</li>
<li class="list__items">
Flashcard decks
</li>
<li class="list__items">
New videos every week
</li>
</ul>
<p class="box__text-dow">
Tutorials by industry experts peer expert
code review Coding exercises Access to our GitHub
repos Community forum Flashcard decks new videos every week
</p>
</article>
</section>
</main>
</body>
</html>