-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (69 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Font Awsome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
/>
<!-- Font -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Custom Css -->
<link rel="stylesheet" href="css/styles.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<script src="js/index.js" defer></script>
<title>Intro component with sign up form</title>
</head>
<body>
<main class="main flex">
<section class="description flex">
<h1 class="description__heading">Learn to code by watching others</h1>
<p class="description__text">
See how experienced developers solve problems in real-time. Watching
scripted tutorials is great, but understanding how developers think is
invaluable.
</p>
</section>
<section class="free-trial flex">
<div class="cta">
<p class="cta__text">Try it free 7 days then $20/mo. thereafter</p>
</div>
<form class="form flex" id="form">
<div class="form__group">
<label for="first-name" class="visually-hidden">First Name</label>
<input type="text" id="first-name" placeholder="First Name" />
</div>
<div class="form__group">
<label for="last-name" class="visually-hidden">Last Name</label>
<input type="text" id="last-name" placeholder="Last Name" />
</div>
<div class="form__group">
<label for="email" class="visually-hidden">Email</label>
<input type="text" id="email" placeholder="Email Address" />
</div>
<div class="form__group">
<label for="password" class="visually-hidden">Password</label>
<input type="password" id="password" placeholder="Password" />
</div>
<button type="submit" class="form__btn">Claim your free trial</button>
<p class="form__info-text">
By clicking the button, you are agreeing to our
<a href="#" class="form__link">Terms and Services</a>
</p>
</form>
</section>
</main>
</body>
</html>