-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.88 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.88 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
<!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">
<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=Karla:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<div class="main">
<div class="container-1">
<h3 class="join">Join our community</h3>
<h4 class="hassle-free">30-day, hassle-free money back guarantee</h4>
<p class="gain access">Gain access to our full library of tutorials along with expert code reviews.<br>
Perfect for any developers who are serious about honing their skills.
</p>
</div>
<div class="container">
<div class="container-2">
<h4 class="monthly">Monthly Subscription</h4>
<h3 class="dollar">$29 <span>per month</span></h3>
<h4>Full access for less than $1 a day</h4>
<button class="sign">Sign Up</button>
</div>
<div class="container-3">
<h3 class="why us">Why Us</h3>
<p class="tutorials">
Tutorials by industry experts<br>
Peer & expert code review<br>
Coding exercises<br>
Access to our GitHub repos<br>
Community forum<br>
Flashcard decks<br>
New videos every week<br>
</p>
</div>
</div>
</div>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Mutmahinat</a>.
</p>
</footer>
</body>
</html>