-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputs.html
27 lines (26 loc) · 1.12 KB
/
Inputs.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My inputs</title>
</head>
<body>
<form class="" action="index.html" method="post">
<input type="password" name="" value=""> <br>
<input type="range" name="" value=""> <br>
<input type="submit" name=""> <br>
<input type="email" name="" value=""> <br>
<input type="date" name="" value=""> <br>
<input type="radio" name="Contact" value=""> <br>
<input type="radio" name="Contact" value=""> <br>
<input type="radio" name="form" value=""> <br>
<input type="number" name="" value=""> <br>
<input type="file" name="" value=""> <br>
<input type="text" name="" value=""><br>
<input type="image" name="" src="https://th.bing.com/th?q=Login+Button+Blue&w=120&h=120&c=1&rs=1&qlt=90&cb=1&dpr=1.3&pid=InlineBlock&mkt=en-WW&cc=NG&setlang=en&adlt=moderate&t=1&mw=247" width="100" height="70" alt="image"> <br>
<input type="url" name="url" id="url" placeholder="https://www.movement.com" pattern="https://"> <br>
<input type="search" name="search" value="">
<button>Search</button>
</form>
</body>
</html>