This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Frontend Mentor - Single Price Grid Component">
<meta name="keywords" content="Single Price Grid Component, Frontend Mentor">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
</link>
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<title>Single Price Grid Component</title>
</head>
<body>
<main>
<section class="grid-container">
<!-- Container One -->
<section class="container-one">
<h2>Join our community</h2>
<h3>30-day, hassle-free money back guarantee</h3>
<p>Gain access to our full library of tutorials along with exorert code reviews. Perfect for any
developers who are serious about honing their skills.</p>
</section>
<!-- Container Two -->
<section class="container-two">
<h3>Monthly Subscription</h3>
<p class="highlight">$29 <span class="pricing">per month</span></p>
<p class="access">Full access for less than $1 a day</p>
<button type="button" class="sign-up">
Sign Up
</button>
</section>
<!-- Container Three -->
<section class="container-three">
<h3>Why us</h3>
<ol>
<li>Tutorials by industry exprets</li>
<li>Peer & expert code review</li>
<li>Coding exercises</li>
<li>Access to our Github repos</li>
<li>Community forum</li>
<li>Flashcard decks</li>
<li>New videos every week</li>
</ol>
</section>
</section>
</main>
</body>
</html>