-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<link rel="shortcut icon" href="./assets/favicon-32x32.png" type="image/png">
<title>Intro component with sign-up form</title>
</head>
<body>
<main>
<div class="left-side">
<h1>Learn to code by watching others</h1>
<p>See how experienced developers solve problemas in real-time. Watching scripted tutoriales is great, but understanding how developers think is invaluable.</p>
</div>
<div class="right-side">
<div class="try-button">
<a href="#">
<strong>Try it free 7 days</strong> then $20/mo. thereafter
</a>
</div>
<form class="form" onsubmit="return false;" id="form" novalidate>
<div class="form-container">
<input class="input" type="text" id="name" name="name" placeholder="Name">
<img src="assets/icon-error.svg" alt="Icon error" id="img-name">
<label for="name" id="label-name">First Name cannot be empty</label>
</div>
<div class="form-container">
<input class="input" type="text" id="last-name" name="last-name" placeholder="Last name">
<img src="assets/icon-error.svg" alt="Icon error" id="img-last-name">
<label for="last-name" id="label-last-name">Last Name cannot be empty</label>
</div>
<div class="form-container">
<input class="input" type="email" id="email" name="email" placeholder="Email">
<img src="assets/icon-error.svg" alt="Icon error" id="img-email">
<label for="email" id="label-email">Looks like this is not an email</label>
</div>
<div class="form-container">
<input class="input" type="password" id="password" name="password" placeholder="Password">
<img src="assets/icon-error.svg" alt="Icon error" id="img-password">
<label for="password" id="label-password">Password cannot be empty</label>
</div>
<button type="submit">
Claim your free trial
</button>
<p>
By clicking the button, you are agreeing to our <strong>Terms and Services</strong>
</p>
</form>
</div>
</main>
</body>
<script src=" ./scripts.js"></script>
</html>