-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
60 lines (57 loc) · 1.9 KB
/
form.html
File metadata and controls
60 lines (57 loc) · 1.9 KB
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
<!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 rel="stylesheet" href="css/form-styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div class="split-screen">
<div class="left">
<section class="copy">
<h1>
Crack Competitve Exams Like Never Before
</h1>
<p>
Get the full Kota Experience
</p>
</section>
</div>
<div class="right">
<form action="google.com" method="POST">
<section class="copy">
<div class="login-part">
<h1>Sign Up</h1>
<h2>Already Have an Account <a href="" class="bada"><strong> Sign In Now</strong></a></h2>
</div>
</section>
<div class="input-container name">
<label for="fname">Full Name</label>
<input id="fnaame" name="fname" type="text">
</div>
<div class="input-container id">
<label for="Email">Email Id</label>
<input id="Email" name="Email" type="email">
</div>
<div class="input-container password">
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="Must be Greater than 7 elements">
</div>
</form>
</div>
<div class="input-checkbox">
<label for="" class="checkbox-container"></label>
<input type="checkbox">
<span class="checkmark">
Sign Up to Get More Updates
</span>
</div>
<button class="input-btn" type="button"> Create Your Free Account</button>
/
</div>
</body>
</html>