-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.html
36 lines (36 loc) · 1.23 KB
/
grid.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Price Grid Component</title>
<link rel="stylesheet" href="grid_css.css">
</head>
<body>
<div id="container">
<header>
<h1>Join our community</h1>
<p class="join-1">30-day, hassle-free money back guarantee</p>
<p class="join-2">Gain access to our full library of tutorials along with expert code reviews.</p>
<p class="join-2">Perfect for any developers who are serious about honing their skills.</p>
</header>
<section class="info">
<h2>Monthly Subscription</h2>
<p class="price-per-month"><span class="price">$29</span> per month</p>
<p class="price-per-day">Full access for less than <span >$1</span> a day</p>
<button type="button">Sign Up</button>
</section>
<section class="info">
<h2>Why Us</h2>
<ul id="services">
<li>Tutorials by industry experts</li>
<li>Peer & expert code review</li>
<li>Coding excercises</li>
<li>Access to our GitHub repos</li>
<li>Community forum</li>
<li>Flashcard decks</li>
<li>New videos every week</li>
</ul>
</section>
</div>
</body>
</html>