-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 1.71 KB
/
Copy pathindex.html
File metadata and controls
45 lines (40 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Single-Price-Grid</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<div class="box-wrapper">
<section class="box1">
<h3>Join our community</h3>
<p class="program">30-day, hassle-free money back guarantee</p>
<span class="privilege">Gain access to our full library of tutorials along with expert code reviews. Perfect for any developers who are serious about honing their skills</span>
</section>
<div class="payment-wrapper">
<section class="box2">
<h2 class="payment">Monthly Subscription</h2>
<p class="price">$29 <span class="duration"> per month</span></p>
<span class="benefit">Full access for less than $1 a day</span>
<button class="register">sign up</button>
</section>
<section class="box3">
<h2 class="payment">Why Us</h2>
<ul class="duration1" >
<p>Tutorials by industry experts</p>
<p>Peer & expert code review</p>
<p>Coding exercises</p>
<p>Access to our GitHub repos</p>
<p>Community forum</p>
<p>Flashcard decks</p>
<p>New videos every week</p>
</ul>
</section>
</div>
</div>
</main>
</body>
</html>