-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (49 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Sign Up Page</title>
<!--- My CSS Link-->
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<main>
<section class="learn">
<h1>Learn to code by<br>watching others</h1>
<p>See how experienced developers solve problems in real-time. <br> Watching scripted tutorials is great, but understanding how <br> developers think is invaluable.</p>
</section>
<section>
<div class="cta">
<p><span>Try it free 7 days</span> then $20/mo. thereafter</p>
</div>
<div class="sign-up">
<form action="post" class="signup-form" data-netlify="true">
<div class="form-btn">
<input type="text" placeholder="First Name" required>
<img class="icon" src="./Images/icon-error.svg" alt="Error">
<p class="msg">First Name cannot be empty</p>
</div>
<div class="form-btn">
<input type="text" placeholder="Last Name" required>
<img class="icon" src="./Images/icon-error.svg" alt="Error">
<p class="msg">Last Name cannot be empty</p>
</div>
<div class="form-btn">
<input type="email" placeholder="Email Address" required>
<img class="icon" src="./Images/icon-error.svg" alt="Error">
<p class="msg">Looks like this is not an email</p>
</div>
<div class="form-btn">
<input type="password" placeholder="Password" required>
<img class="icon" src="./Images/icon-error.svg" alt="Error">
<p class="msg">Password cannot be empty</p>
</div>
<input id="submit-btn" type="button" value="claim your free trial" id="btn">
<p class="terms">By clicking the button, you are agreeing to our <span><a href="#">Terms and Services</a></span></p>
</form>
</section>
</main>
</body>
</html>