INPUT FORMS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Forms</title>
</head>
<body>
<title>INPUT</title>
<input />
<br />
text
<input type="text" />
<br />
password
<input type="password" />
<br />
number
<input type="number" />
<br />
date
<input type="date" />
<br />
time
<input type="time" />
<br />
color
<input type="color" />
<br />
checkbox
<input type="checkbox" />
</body>
</html>
Comments
Post a Comment