-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregform.html
95 lines (71 loc) · 3.72 KB
/
regform.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
<html>
<head>
<title>REGISTRATION FORM</title>
<script src="regform.js"></script>
<link rel="stylesheet" href="regform.css"/><link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anek+Malayalam&display=swap" rel="stylesheet">
</head>
<body onload="loading()">
<div class="page">
<div class="bgimage">
<div class="content">
<div class="header">
<h1 style="color: white">REGISTER</h1> <h1 style="color: rgb(204, 204, 50)">YOURSELF</h1>
</div>
<div class="box1">
<div class="form">
<h style="color: rgb(0, 0, 0); font-size: 25px;">Kindly enter all the details requested<br>below:</h><br><br>
<for>
<table class="table">
<tr>
<td><label for="fname">First Name: *</label></td>
<td><input type="text" onmouseleave="display()" class="inp" id="fname" required/></td>
</tr>
<tr>
<td><label for="mname">Middle Name: </label></td>
<td><input type="text" class="inp" id="mname"/></td>
</tr>
<tr>
<td><label for="lname">Last Name: *</h></label></td>
<td><input type="text" class="inp" id="lname" required/></td>
</tr>
<tr>
<td><label for="Age">Age: </label></td>
<td><input type="text" class="inp" id="age"/></td>
</tr>
<tr>
<td><label for="num">Mobile no: *</h></label></td>
<td><input type="text" class="inp" id="num" required/></td>
</tr>
<tr>
<td><label for="mail">Email ID: *</h></label></td>
<td><input type="text" class="inp" id="mail" required/></td>
</tr>
<tr>
<td style="display: flex;"><label for="sug">Suggestions: </label></td>
<td><input type="text" class="inp" id="sug" style="height: 80px"/></td>
</tr>
<tr><td colspan="2"></td></tr>
<tr>
<td></td>
<td style="display: flex; justify-content: end;">
<button id="submit" onclick="show()">SUBMIT</button>
</td>
</tr>
</table>
</form>
</div>
<div class="box2">
<div class="tick">
</div>
<div class="box3">
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>