-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (62 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Frontend Mentor | Single Price Grid Component</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<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;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="styles.css">
<!-- Favicon -->
<link rel="icon" href="images/favicon-32x32.png">
</head>
<body>
<main class="holder">
<!-- Community -->
<div class="row-holder">
<div class="top-row">
<div class="community">
<h1 class="top-title">Join our community</h1>
<h2 class="top-subtitle">30-day, hassle-free money back guarantee</h2>
<p class="top-desc">Gain access to our full library of tutorials along with expert code reviews. Perfect for any developers who are serious about honing their skills.</p>
</div>
</div>
<div class="btm-row">
<!-- Subscription -->
<div class="subsc">
<h2 class="subsc-subtitle">Monthly Subscription</h2>
<div class="subsc-price">
<h1 class="subsc-price-no">$29</h1>
</div>
<div class="subsc-price">
<p class="subsc-price-text">per month</p>
</div>
<p class="subsc-desc">Full access for less than $1 a day</p>
<button type="button" class="signup">Sign Up</button>
</div>
<!-- Why -->
<div class="why">
<h2 class="why-subtitle">Why us</h2>
<p class="why-desc">
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</p>
</div>
</div>
</div>
<section class="footer">
<span class="chall">Challenge by: <a href="https://www.frontendmentor.io/challenges/single-price-grid-component-5ce41129d0ff452fec5abbbc" target="_blank">Frontend Mentor</a></span>     
<span class="solution">Solution by: <a href="https://www.frontendmentor.io/profile/CKodes" target="_blank">CKodes</a></span>
</section>
</main>
</body>
</html>