-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (95 loc) · 4.43 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="forms.css">
<title>My first Registration Form</title>
</head>
<body>
<div>
<h2>Registration Form</h2>
<div>
<p class="quote">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sunt maxime perferendis incidunt ducimus,
eaque a sequi quisquam, cupiditate, libero laborum ut veritatis delectus quis. Labore unde id ad? Eum,
distinctio. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Aut dignissimos, officiis odit omnis
assumenda ullam quaerat, praesentium asperiores necessitatibus possimus autem beatae velit debitis numquam?
Voluptates deleniti fugit commodi mollitia!
<span id="author">-Anonymous</span>
</p></div>
<br>
<hr width="100%">
<p class="social">These are my social media handles(will update tomorrow)<br>peace out</p>
<a href="https://www.linkedin.com/in/shankhosuvro-ghosh-b0552622b"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LinkedIn_logo_initials.png/640px-LinkedIn_logo_initials.png" height="100px" width="100px" alt="linkedin"></a>
<hr width="100%">
<h4>Skills required for this position</h4>
<div id="skills">
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JAVASCRIPT</li>
</ol>
</div>
<h4>Your qualifications must have These</h4>
<div id="skills1">
<ul>
<li>Bachelor's Degree</li>
<li>Must Have fluency in English</li>
<li>Must have decency</li>
</div>
<div id="reg-form">
<form>
<label for="First-Name">First-Name:</label>
<input type="text" name="First Name" placeholder="First-Name" required>
<label for="Last-Name">Last-Name:</label>
<input type="text" name="Last-Name" placeholder=" Last-Name" required>
<div>
<label for="gender-male">Male</label>
<input type="radio" name="gender-choice" value="choice-1">
<br>
<label for="gender-female">Female</label>
<input type="Radio" name="gender-choice" value="choice-2">
<br>
<label for="other">Other</label>
<input type="radio" name="gender-choice" value="choice-3">
<br>
</div>
<div>
<label for="Email">Email:</label>
<input type="text" name="Email" placeholder="[email protected]" required>
<label for="Password">Password:</label>
<input type="password" name="Password">
</div>
<div>
<label for="Month">Month</label>
<select name="Month">
<option value="0" selected disabled>Month</option>
<option value="January">January</option>
<option value="February">February</option>
<option value="March">March</option>
<option value="April">April</option>
<option value="May">May</option>
<option value="June">June</option>
<option value="July">July</option>
<option value="August">August</option>
<option value="September">September</option>
<option value="October">October</option>
<option value="November">November</option>
<option value="December">December</option>
</select>
</div>
<div id="mandatory">
<label for="agree">I agree to the above conditions of the form:</label>
<input type="checkbox" name="agree"><br>
<label for="agree">I agree to the above conditions of the form:</label>
<input type="checkbox" name="agree"><br>
<label for="agree">I agree to the above conditions of the form:</label>
<input type="checkbox" name="agree"><br>
<label for="agree">I agree to the above conditions of the form:</label>
<input type="checkbox" name="agree"><br>
<button type="submit">Submit</button>
</div>
</form>
</div>
<h2>Thats it for today,Will continue tomorrow</h2>
</div>
</body>
</html>