forked from DevaGaneshB/HTML
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTest2.html
More file actions
29 lines (28 loc) · 684 Bytes
/
Test2.html
File metadata and controls
29 lines (28 loc) · 684 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
<html>
<head>
<title>Form2</title>
</head>
<body>
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>
City:<input type="text" name="city"><br><br>
Pincode:<input type="num" name="pincode"><br><br>
MobileNo:<input type="num" name="MobileNo"><br><br>
<button onclick="print()">Print</button>
</body>
<script>
function print(){
window.print();
}
</body>
</html>