-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform2.html
More file actions
38 lines (36 loc) · 1.26 KB
/
form2.html
File metadata and controls
38 lines (36 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>full form</title>
</head>
<body>
<form action="/action">
<label for="username">Enter your username</label>
<input type="text" id="username" placeholder="username">
<label for="password">Enter your password</label>
<input type="password" id="password" placeholder="password">
<button>Submit</button>
<button type="submit">submit2</button>
<button type="button">done</button>
<button type="reser">reset</button>
</form>
<hr>
<hr>
<form action="/action">
<label for="username">Enter your username</label>
<input type="text" id="username" placeholder="username">
<label for="password">Enter your password</label>
<input type="password" id="password" placeholder="password">
<input type="submit"
<input type="submit" value="click me">
</form>
<hr>
<hr>
<form action="https://www.youtube.com/results">
<input type="text" placeholder="search in youtube" name="search_query">
<input type="password" id="password" placeholder="password">
<button>Search</button>
</body>
</html>