-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJuniour dev appliaction form.html
More file actions
137 lines (111 loc) · 3.32 KB
/
Juniour dev appliaction form.html
File metadata and controls
137 lines (111 loc) · 3.32 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
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
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Survey Form</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
}
h1 {
margin-top: 20px;
}
form {
background-color: white;
max-width: 500px;
margin: 20px auto;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: left;
}
label {
font-weight: bold;
}
input, select, textarea {
width: 100%;
padding: 8px;
margin-top: 5px;
margin-bottom: 15px;
border-radius: 5px;
border: 1px solid #ccc;
}
input[type="radio"],
input[type="checkbox"] {
width: auto;
margin-right: 5px;
}
button {
width: 100%;
padding: 10px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #0056b3
}
</style>
</head>
<body>
<h1 id="title">Junior developer appliaction form</h1>
<p id="description">Please fill out this form to apply for a junior developer position.</p>
<form id="survey-form">
<label id="name-label" for="name">Name:</label>
<input
type="text"
id="name"
name="name"
placeholder="Enter your full name"
required
>
<br>
<label id="email-label"for="email">Email</label>
<input type="email" id="email" name ="email" placeholder="Enter your email" required>
<br>
<label id="number-label" for="number">Age:</label>
<input
type="number"
id="number"
name="number"
placeholder="Enter your age"
min="18"
max="30"
required
>
<br>
<p>Experience Level:</p>
<input type="radio" id="beginner" name="experience" value="beginner" required>
<label for="beginner">Beginner</label><br>
<input type="radio" id="intermediate" name="experience" value="intermediate">
<label for="intermediate">Intermediate</label><br>
<input type="radio" id="advanced" name="experience" value="advanced">
<label for="advanced">Advanced</label>
<br>
<label for="dropdown">Preferred Programming Language:</label>
<select id="dropdown" name="dropdown" required>
<option value="">Select an option</option>
<option value="javascript">JavaScript</option>
<option value="python">Python</option>
</select>
<br><br>
<p>Skills:</p>
<input type="checkbox" id="html" name="skills" value="html">
<label for="html">HTML</label><br>
<input type="checkbox" id="css" name="skills" value="css">
<label for="css">CSS</label><br>
<input type="checkbox" id="js" name="skills" value="javascript">
<label for="js">JavaScript</label>
<br>
<label for="comments">Additional Comments:</label><br>
<textarea id="comments" name="comments" placeholder="Enter your comments here"></textarea>
<br><br>
<button type="submit" id="submit">Submit</button>
</form>
</body>
</html>