-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (84 loc) · 2.37 KB
/
index.html
File metadata and controls
84 lines (84 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>SIH Project</title>
</head>
<body>
<div class="form-container">
<h2 id="q">Registration Form</h2>
<div class="form-group">
<label for="title_code">Title-Code:</label>
<input
type="text"
id="title-code"
name="title-code"
placeholder="Enter title code"
/>
</div>
<div class="form-group">
<label for="title">Title Name:</label>
<input type="text" id="title" name="title" placeholder="Enter title" />
</div>
<div class="form-group">
<label for="regNumber">Hindi Title</label>
<input
type="text"
id="regNumber"
name="regNumber"
placeholder="Enter hindi title"
/>
</div>
<div class="form-group">
<label for="regNumber">Registration Serial Number:</label>
<input
type="text"
id="rsn"
name="rsn"
placeholder="Enter registration number"
/>
</div>
<div class="form-group">
<label for="regNumber">Registration Number:</label>
<input
type="text"
id="rn"
name="rn"
placeholder="Enter registration number"
/>
</div>
<div class="form-group">
<label for="owned">Owner's name:</label>
<input type="text" id="owned" name="owned" placeholder="owner's name" />
</div>
<div class="form-group">
<label for="regNumber">State:</label>
<input type="text" id="State" name="State" placeholder="State" />
</div>
<div class="form-group">
<label for="regNumber">Publication City/District:</label>
<input
type="text"
id="pub_cd"
name="pub_cd"
placeholder="Publication"
/>
</div>
<div class="form-group">
<label for="regNumber">Perodity:</label>
<input
type="text"
id="Perodity"
name="Perodity"
placeholder="Perodity"
/>
</div>
<button type="submit" id="submit" class="submit-btn" onclick="btc()">
Submit
</button>
</div>
<script src="main.js"></script>
</body>
</html>