-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (100 loc) · 3.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>REGISTRATION FORM</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="title">
Registration Form
</div>
<div class="form">
<div class="input_field">
<label>First Name</label>
<input type="text" class="input">
</div>
<div class="input_field">
<label>Last Name</label>
<input type="text" class="input">
</div>
<div class="input_field">
<label>Gender</label>
<div class="custom_select">
<select>
<option value="">Option<Select</option>
<option value="male">Male<Select</option>
<option value="female">Female</option>
</select>
</div>
<div class="input_field">
<label>Email Address</label>
<input type="text" class="input">
</div>
<div class="input_field">
<label>Phone Number</label>
<input type="text" class="input">
</div>
<div class="input_field">
<label>Address</label>
<textarea class="textarea"></textarea>
</div>
<div class="input_field">
<label>Area Of Interest</label>
<div class="custom_select">
<select>
<option value="">Option<Select</option>
<option value="programming">Programming<Select</option>
<option value="blockchain">Blockchain Engineering</option>
<option value="stacks blockchain developmen">Stacks Blockchain Development</option>
<option value="solana blockchain development">Solana Blockchain Development</option>
<option value="near blockchain development">Near Blockchain Development</option>
<option value="other">Other</option>
</select>
</div>
<label>Experience in Programming</label>
<div class="custom_select">
<select>
<option value="">Option</option>
<option value="0-5 years">0-5 Years<Select</option>
<option value="5 years and above">5 Years and Above<Select</option>
</select>
</div>
<div class="input_field">
<label>Familiar Programming Lauguage</label>
<div class="custom_select">
<select>
<option value="">Option</Option><Select</option>
<option value="js">JS<Select</option>
<option value="rust">RUST</option>
<option value="clarity">CLARITY</option>
<option value="other">Other</option>
</select>
</div>
<div class="input_field">
<label>Familiar Development Library Enviroment</label>
<div class="custom_select">
<select>
<option value="">Option<Select</option>
<option value="reactjs">ReactJS<Select</option>
<option value="nextjs">NextJS</option>
<option value="vuejs">VueJS</option>
<option value="angularjs">AngularJS</option>
<option value="other">Other</option>
</select>
</div>
<div class="input_field terms">
<label class="check">
<input type="checkbox">
<span class="checkmark"></span>
</label>
<p>Agreed to terms and agreement</p>
<div class="input_field">
<input type="submit" value="REGISTER" class="btn">
</div>
</div>
</div>
</div>
</body>
</html>