-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (102 loc) · 3.74 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="author" content="Melvin Aguilar" />
<meta
name="description"
content="Single Price Grid Component Solution for FrontendMentor.io"
/>
<meta
name="keywords"
content="Frontend Mentor, Single Price Grid Component Challenge, Melvin Aguilar"
/>
<meta
property="og:title"
content="Single Price Grid Component - Frontend Mentor"
/>
<meta
property="og:description"
content="Single Price Grid Component Solution for FrontendMentor.io"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link href="./output.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap"
/>
</noscript>
<title>Frontend Mentor | Single Price Grid Component</title>
</head>
<body class="bg-light-gray grid min-h-screen place-content-center text-white">
<main
class="shadow-main m-6 max-w-[25rem] overflow-auto rounded-lg bg-white md:grid md:max-w-[39.6875rem] md:grid-cols-2"
>
<h1 class="sr-only">Single price grid component</h1>
<div class="col-span-1 p-default md:col-span-2 md:p-10">
<h2 class="text-cyan text-2xl font-bold leading-7 -tracking-title">
Join our community
</h2>
<p class="text-bright-yellow -tracking-title mt-5.5 text-lg font-bold">
30-day, hassle-free money back guarantee
</p>
<p class="text-gray leading-paragraph mt-1.5 -tracking-aux">
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="bg-cyan p-default md:p-10">
<h3 class="-tracking-title text-lg font-bold leading-5">
Monthly Subscription
</h3>
<p class="text-light-gray mt-3.5 flex items-center gap-3">
<span class="text-[2rem] font-bold text-white">$29</span>
per month
</p>
<p class="text-normal tracking-[-0.01em]">
Full access for less than $1 a day
</p>
<a
href="#"
class="shadow-default bg-bright-yellow mt-6.5 block w-full rounded-sm py-3.5 text-center font-bold leading-5 transition-default hover:bg-dark-yellow"
>
Sign Up
</a>
</div>
<div class="bg-cyan/80 p-default leading-5 md:p-10">
<h3 class="-tracking-title text-lg font-bold">Why Us</h3>
<ul role="list" class="text-light-gray mt-4.5 text-sm -tracking-list">
<li role="listitem">Tutorials by industry experts</li>
<li role="listitem">Peer & expert code review</li>
<li role="listitem">Coding exercises</li>
<li role="listitem">Access to our GitHub repos</li>
<li role="listitem">Community forum</li>
<li role="listitem">Flashcard decks</li>
<li role="listitem">New videos every week</li>
</ul>
</div>
</main>
</body>
</html>