-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (60 loc) · 2.35 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
61
62
63
64
65
66
67
68
69
<!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="style.css">
<title>Frontend Mentor | Intro component with sign up form</title>
</head>
<body>
<main>
<div class="left">
<h1>Learn to code by watching others</h1>
<p class="leftpara">
See how experienced developers solve problems in real-time. <br> Watching scripted tutorials is great,
but understanding how developers think is invaluable. </p>
</div>
<div class="right">
<p class="rightpara"> <strong>Try it free 7 days</strong>then $20/mo. thereafter</p>
<form action="" id="form">
<div class="finput">
<label for="fname"></label>
<img src="./images/icon-error.svg" alt="" class="failure-icon">
<input type="text" id="fname" name="fname" placeholder="First Name" > <br>
<p class="error"></p>
</div>
<div class="finput">
<label for="lname"></label>
<img src="./images/icon-error.svg" alt="" class="failure-icon">
<input type="text" id="lname" name="lname" placeholder="Last Name"> <br>
<p class="error"></p>
</div>
<div class="finput">
<label for="email"></label>
<img src="./images/icon-error.svg" alt="" class="failure-icon">
<input type="email" id="email" name="email" placeholder="Email Address" > <br>
<p class="error"></p>
</div>
<div class="finput">
<label for="pword"></label>
<img src="./images/icon-error.svg" alt="" class="failure-icon">
<input type="password" id="pword" name="pword" placeholder="Password"><br>
<p class="error"></p>
</div>
<button type="submit">Claim your free trial </button><br>
<footer>
<p class="disc">By clicking the button, you are agreeing to our <a href="#">Terms and Services</a></p>
</footer>
</form>
</div>
</main>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Tushar Biswas</a>.
</p>
</footer>
<script src="script.js"></script>
</body>
</html>