forked from DevaGaneshB/HTML
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathForm1.HTML
More file actions
33 lines (32 loc) · 998 Bytes
/
Form1.HTML
File metadata and controls
33 lines (32 loc) · 998 Bytes
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
<html>
<head>
<title>Form1</title>
<h1>Biodata Form</h1>
</head>
<body style=border-style:solid align="center">
<br><br>
<form>
Name:<input type="text" name="name"><br><br>
DOB:<input type="date" name="DOB"><br><br>
<form>
Photo:
<input type="file" name="fileupload" value="fileupload" id="fileupload">
<label for="fileupload">Select file to upload</label><br>
<input type ="image" src="F:\Web Prog Lab\mybean.jpeg" alt="submit" width="100" >
</form>
Password:<input type="password" name="pwd" ><br><br>
<form>
Gender:
<input type="radio" name="Gender" value="male" >Male
<input type="radio" name="Gender" value="female" >Female
<input type="radio" name="Gender" value="transgender" >Transgender<br><br>
</form>
<form>
Hobbies:
<input type="checkbox" name="hobby" value="Programming">Programming
<input type="checkbox" name="hobby" value="Devloping">Devloping<br><br>
</form>
</form>
<a href="file:///F:/Web%20Prog%20Lab/Activity23.HTML">proceed</a>
</body>
</html>