-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (50 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png" />
<link rel="stylesheet" href="css/main.css" />
<title>Frontend Mentor | Intro component with sign up form</title>
</head>
<body>
<div class="container">
<div class="text">
<h1 class="text__title">Learn to code by watching others</h1>
<p class="text__desc">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="signup">
<p class="signup__ad"><span>Try it free 7 days</span> then $20/mo thereafter</p>
<form class="signup__form">
<div class="input-block">
<label for="first-name" class="accessibility-requirement">Label</label>
<input type="text" name="First Name" id="first-name" class="input-field" placeholder="First Name"/>
<img src="images/icon-error.svg" alt="Error icon" class="error-icon">
<p class="error"></p>
</div>
<div class="input-block">
<label for="last-name" class="accessibility-requirement">Label</label>
<input type="text" name="Last Name" id="last-name" class="input-field" placeholder="Last Name"/>
<img src="images/icon-error.svg" alt="Error icon" class="error-icon">
<p class="error"></p>
</div>
<div class="input-block">
<label for="email" class="accessibility-requirement">Label</label>
<input type="text" name="Email" id="email" class="input-field" placeholder="Email Address"/>
<img src="images/icon-error.svg" alt="Error icon" class="error-icon">
<p class="error"></p>
</div>
<div class="input-block">
<label for="password" class="accessibility-requirement">Label</label>
<input type="password" name="Password" id="password" class="input-field" placeholder="Password"/>
<img src="images/icon-error.svg" alt="Error icon" class="error-icon">
<p class="error"></p>
</div>
<button type="submit" class="submit">Claim your free trial</button>
<p class="tos">By clicking the button, you are agreeing to our <a href="#">Terms and Services</a></p>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>