-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
42 lines (40 loc) · 1.85 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Intro component with sign up form</title>
</head>
<body>
<div class="container">
<div class="header">
<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="content">
<div class="price_card">
<p><span>Try it free 7 days</span> then $20/mo. thereafter</p>
</div>
<div id = "info_card" class="info_card">
<form action="#">
<input class="success" type="text" name="first_name" id="first_name" placeholder="First Name">
<label class="input_error">First Name Cannot be empty</label>
<input class="success" type="text" name="last_name" id="last_name" placeholder="Last Name">
<label class="input_error">Last Name Cannot be empty</label>
<input class="success" type="email" name="email" id="email" placeholder="Email Address">
<label class="input_error">Looks like this is not an email</label>
<input class="success" type="password" name="password" id="password" placeholder="Password">
<label class="input_error">Password Cannot be empty</label>
<button id = "trial_button">Claim your free trial</button>
</form>
<p class = "terms">By clicking the button, you are agreeing to our <span>Terms and Services</span></p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>