-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
53 lines (46 loc) · 1.21 KB
/
form.html
File metadata and controls
53 lines (46 loc) · 1.21 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>form</title>
</head>
<body>
<form action="/action">
<div>
<label for="Username">Username:</label>
<input type="text" id="Username" name="user" placeholder="Type your name" >
</div>
<div>
<label for="Password">Password:</label>
<input type="password" id="Password" name="pass" placeholder="password">
</div>
<button>Submit</button>
<hr>
</form>
<!--Search in youtube-->
<form action="https://www.youtube.com/results">
<div>
<label for="Search">youtube</label>
<input type="text" placeholder="Search in youtube" id="Search" name="search_query">
<button>Search</button>
</div>
</form>
<hr>
<form action="https://www.bing.com/search">
<div>
<label for="Search">Google</label>
<input type="text" placeholder="Search in google" id="Search" name="q">
<button>Submit</button>
</div>
</form>
<hr>
<form action="/server">
<div>
<input type="checkbox" id="checkbox" name="check">
<label for="checkbox">i am 18+</label>
<button>Submit</button>
</div>
</form>
</body>
</html>