-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (50 loc) · 2.49 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<link rel="stylesheet" href="./styles.css">
<title>Task-02</title>
</head>
<body>
<div class="row">
<div class="main">
<div class="fakeimg">
<h1 class="heading">Learn to code by</h1>
<h1 class="heading"> watching others</h1><br>
<p class="para">See how experienced developer solve the problems in real time. Watching scripted tutorials is great, but understanding how developers think is invaluable.</p>
</div>
</div>
<div class="side">
<button class="top-heading"><b>Try it free 7 days</b> then 20$/mo. thereafter</button>
<div class="sidebar">
<form id="form" class="form">
<div class="form-control">
<input type="text" id="firstname" placeholder="First Name *" />
<small>Error message</small>
</div>
<div class="form-control">
<input type="text" id="lastname" placeholder="Last Name" />
<small>Error message</small>
</div>
<div class="form-control">
<input type="text" id="email" placeholder="Email *" />
<small>Error message</small>
</div>
<div class="form-control">
<input type="password" id="password" placeholder="Password *"/>
<small>Error message</small>
</div>
<button type="submit">CLAIM YOUR FIRST TRIAL</button>
<p class="policy">By clicking the button you are agreeing to our <span class="terms"><a class="terms" href='javascript:void(0);'>Terms and Service</a> </span></p>
</form>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>