-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
58 lines (53 loc) · 2.11 KB
/
Copy pathform.html
File metadata and controls
58 lines (53 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Form section</title>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body style="background-color: #CBEDD5;"> <!--inline css -->
<h1 style="text-align: center; text-decoration: underline;">FORM SECTION</h1>
<form>
<label>First Name:</label>
<input type="text" name="firstName" required> <br> <br>
<label>Last Name:</label>
<input type="text" name="lastName" required> <br> <br>
<label>Your Phone number:</label>
<input type="number" name="number" required> <br> <br>
<label>Your Address:</label>
<input type="text" name="address" required><br><br>
<label>Pin Code:</label>
<input type="number" name="code" required><br><br>
<label>DOB:</label>
<input type="date" name="dob" required><br><br>
<label>Work Experience:</label>
YES<input type="radio" name="workExperience" value="YES">
NO <input type="radio" name="workExperience" value="NO"><br><br>
<label>Gender :</label>
Male<input type="radio" name="gender" value="Male">
Female<input type="radio" name="gender" value="Female">
Other <input type="radio" name="gender" value="Other"><br><br>
<label>Your Skill:</label>
<select name="skill">
<option value="webdevelopment">WEB DEVELOPMENT</option>
<option value="clouding">CLOUDING</option>
<option value="deeplearning">DEEP LEARNING</option>
<option value="dataStructure">DATA STRUCTURE</option>
</select><br>
<h3 style="text-align:left;">Why do you want to work here?</h3>
<textarea name="whyYouWantToWork" required cols="30" rows="10"></textarea><br>
<input type="submit" value="Submit Form">
</form>
<h3><a href="./index.html">Back</a></h3>
</body>
</html>
<!-- firstName=Kamran&
lastName=Khan&
number=9149565713&
address=gojwara&
code=190002&
dob=2023-01-02&
workExperience=YES&
gender=Male&
skill=deeplearning&
whyYouWantToWork=asehi -->