-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 2.63 KB
/
index.html
File metadata and controls
61 lines (56 loc) · 2.63 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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- etiquetas meta -->
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Santos Romero">
<!-- style -->
<link rel="stylesheet" href="css/style.css">
<!-- fuente -->
<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">
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
<!-- titulo -->
<title>Single Price Grid Component | 100 days of projects</title>
</head>
<body class="bg-light">
<main>
<section class="container my-4 my-sm-0 d-flex justify-container-center align-items-center min-vh-100 min-vh-lg-100">
<div class="row shadow rounded mx-auto" style="width: 750px;">
<div class="col-12 bg-white p-4">
<h1 class="h2 text-success">Join our community</h1>
<p class="text-primary">30-day, hassle-free money back guarantee</p>
<p class="text-secondary">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 class="col-12 col-sm-6 text-white text-bg-success p-4">
<h2 class="h4">Monthly Subscription</h2>
<div class="d-flex align-items-center">
<span class="fs-1">$29</span>
<small class="ps-3">per month</small>
</div>
<p>Full access for less than $1 a day</p>
<button type="button" class="btn btn-primary text-white fw-bold d-block w-100">Sign Up</button>
</div>
<div class="col-12 col-sm-6 text-white text-bg-danger p-4">
<h2 class="h4">Why Us</h2>
<p>Tutorials by industry experts
Peer & expert code review
Coding exercises
Access to our Github repos
Community forum
Flashcard decks
New videos every week</p>
</div>
</div>
</section>
</main>
</body>
</html>