-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.63 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
<html>
<head>
<title>Frontend Mentor Challenge</title>
<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:wght@400;700&display=swap" rel="stylesheet">
<link href="./styles.css" rel="stylesheet">
</head>
<body>
<div id="card">
<div id="top-section">
<h2 style="color: rgba(42, 178, 176); margin-bottom: 20px">Join our Community</h2>
<h4 style="color: #c0df34; margin-bottom: 10px">30-day, hassle-free money back guarantee</h4>
<p id="paragraph-1">Gain access to our full library of tutorials along with expert reviews. Perfect for developers who are serious about honing their skills.</p>
</div>
<div id="bottom-section">
<div id="bottom-left-section">
<h4 style="margin-bottom: 20px">Monthly Subscription</h4>
<div id="sub-price">
<div id="sub-price-1" style="font-size: 2rem; font-weight: 700;">$29</div>
<div id="sub-price-2">per month</div>
</div>
<p>Full access for less than 1$ a day</p>
<button>Sign Up</button>
</div><div id="bottom-right-section">
<h4>Why us</h4>
<ul>
<li>Tutorials by industry experts</li>
<li>Peer & expert code review</li>
<li>Coding exercises</li>
<li>Access to our GitHub repos</li>
<li>Community Forum</li>
<li>Flashcard docks</li>
<li>New videos every week</li>
</ul>
</div>
</div>
</div>
</body>
</html>