-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
62 lines (60 loc) · 1.84 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=,, initial-scale=1.0" />
<title>FORM</title>
<link rel="stylesheet" href="form.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<main>
<div class="body">
<div class="text">
<h1>Learn to code by watching others</h1>
<p>
See how experienced developers solve problems in real-time. Watching
scripted tutorials is great, but understanding how developers think
is invaluable
</p>
</div>
<div class="form">
<h3>Try it free 7 days than $20/mo. therefter</h3>
<form action="">
<input
type="text"
name="First Name"
id=""
placeholder="First Name"
/><br />
<input
type="text"
name="Second Name"
id=""
placeholder="Second Name"
/><br />
<input
type="email"
name="email"
id=""
placeholder="Email Address"
/><br />
<input
type="password"
name="password"
id=""
placeholder="Your Password"
/><br />
<input type="submit" value="CLAIM YOUR FREE TRIAL" id="btn" /><br />
<p>
By clicking the button, you are agreeing to our
<span id="terms">Terms and Services</span>
</p>
</form>
</div>
</div>
</main>
</body>
</html>