-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
75 lines (59 loc) · 3.83 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
70
71
72
73
74
75
<!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">
<title>Frontend Mentor | Intro component with sign up form</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Poppins:400,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="mobile-styles.css">
</head>
<body>
<div class="row main">
<div class="col-lg-6 container1">
<h1>Learn to code by watching others</h1>
<p class="container1-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="col-lg-5 container2">
<button type="button" class="btn btn-block free-button" ><strong class="try-line">Try it free 7 days </strong>then $20/mo. thereafter</button>
<div class="card">
<div class="card-body">
<div class="input-group mb-3">
<input id="First_name" type="text" class="form-control" placeholder="First Name" aria-label="First Name" aria-describedby="button-addon2">
</div>
<p id="first-name" class="form-fields"><em>first name cannot be empty</em></p>
<div class="input-group mb-3">
<input id="last_name" type="text" class="form-control" placeholder="Last Name" aria-label="Last Name" aria-describedby="button-addon2">
</div>
<p id="last-name" class="form-fields"><em>last name cannot be empty</em></p>
<div class="input-group mb-3">
<input id="_email" type="email" class="form-control" placeholder="Email Address" aria-label="Email Address" aria-describedby="button-addon2">
</div>
<p id="email" class="form-fields"><em>looks like this is not an email</em></p>
<div class="input-group mb-3">
<input id="_password" type="password" class="form-control" placeholder="Password" aria-label="Password" aria-describedby="button-addon2">
</div>
<p id="password" class="form-fields"><em>password cannot be empty</em></p>
<button class="btn btn-lg btn-block claim-button" type="button">CLAIM YOUR FREE TRIAL</button>
<p class="last-div-p">By clicking the button, you are agreeing to our <a href="#"><strong class="terms">Terms and Services</strong></a> ></p>
</div>
</div>
</div>
</div>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/rehank478">Rehan khan</a>.
</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="index.js" charset="utf-8"></script>
</body>
</html>