-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp23Form.html
More file actions
25 lines (22 loc) · 876 Bytes
/
exp23Form.html
File metadata and controls
25 lines (22 loc) · 876 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
<!-- example on "Form" tag-->
<DOCTYPE html>
<html lang="en">
<head>
<title> my 23th web page</title>
<link rel="icon" href="id.png"/>
</head>
<body>
<h3>demo on html forms</h3>
<form id="frm1" action="https://www.sky.in/test" method="get"><!--method attr is used to transport data in different ways-->
<input type="text" id="fna" name="fna" placeholder="enter firstname"/><br>
<input type="text" id="lna" name="lna" placeholder="enter lastname"/><br>
<input type="submit" value="Submit"/>
</form>
<hr>
<form id="frm2" action="" method="post">
<input type="text" id="una" name="una" placeholder="enter username"/><br>
<input type="password" id="pwd" name="pwd" placeholder="enter password"/><br>
<input type="submit" name="sb2" value="Log in"/>
</form>
</body>
</html>