-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (43 loc) · 2.12 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet">
</head>
<body>
<main>
<section class="section-container">
<h1>Learning to code? This is the most important thing you will ever read!</h1>
<ul>
<li class="li-green">💰 Land a job with a 6 figure salary</li>
<li class="li-yellow">💻 Master JavaScript in 3 hours</li>
<li class="li-blue">⚛️ Learn React in 10 minutes</li>
<li class="li-pink">☕ Be a NodeJS Dev by lunchtime</li>
</ul>
<h3>My subliminal learning technique worked for Mark Zuckerberg and Albert Einstein, and it can work for you!</h3>
<img src="images/bugatti.jpg">
<p>Want a great job in tech? Want a six-figure salary? Then you have come to the right place. I am going to tell you all
you need to know to get all of that and much more, without you lifting a finger. You can learn passively. Just sit back,
close your eyes, and let the sound of my voice make the code sink deep into your brain. </p>
</section>
</main>
<div class="modal" id="modal">
<div class="close-modal-btn-container">
<button class="modal-close-btn" id="modal-close-btn" disabled>X</button>
</div>
<div class="modal-inner" id="modal-inner">
<h2>We ❤️ Your Data!</h2>
<p class="modal-text" id="modal-text">We have a strict policy on tracking and spamming: we'll definitely track you, and we'll definitely spam you. To use this
site, enter your name and email address and accept our ridiculous terms and conditions.</p>
<form id="consent-form">
<input type="text" name="fullName" placeholder="Enter your full name" required/>
<input type="email" name="email" placeholder="Enter your email" required/>
<div class="modal-choice-btns" id="modal-choice-btns">
<button type="submit" class="modal-btn">Accept</button>
<button class="modal-btn" id="decline-btn">Decline</button>
</div>
</form>
</div>
</div>
<script src="index.js"></script>
</body>
</html>