-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathform2print.html
More file actions
33 lines (33 loc) · 826 Bytes
/
form2print.html
File metadata and controls
33 lines (33 loc) · 826 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>Form2</title>
<h1>Contact Form</h1>
</head>
<body style=border-style:solid align="center">
<br><br>
Country:
<select>
<option value="Australia">Australia</option>
<option value="Argentina">Argentina</option>
<option value="India">India</option>
</select><br><br>
State:
<select>
<option value="EastAustralia">EastAustralia</option>
<option value="Bueonos Aires ">Bueonos Aires</option>
<option value="TamilNadu">TamilNadu</option>
</select><br><br>
<form>
City:<input type="text" name="city"><br><br>
Pincode:<input type="num" name="pincode"><br><br>
MobileNo:<input type="num" name="MobileNo"><br><br>
</form>
<a href="file:///F:" download="file.PDF">Print</a>
<button onclick="print()">Print</button>
</body>
<script>
function print(){
window.print();
}
</script>
</html>