input

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<input type="button" disabled value="Login"> <br>
<input type="button" value="Login"><br>
<input type="password" placeholder="Password"><br>
<input type="email" placeholder="Email"><br>
<input type="color" name="color"><br>
<input type="text"><br>
<input type="file" multiple accept="image/jpeg,image/png"><br>
<input type="hidden"><br>
<input type="reset"><br>
<input type="range" max="100" min="10"><br>
<input type="number" placeholder="Number" inputmode="number"><br>

<!------>


<!------------->
<input type="radio" id="color1" name="color" ><label for="color1">Color1</label>
<input type="radio" id="color2" name="color" ><label for="color2">Color2</label>

<form method="post" action="">
<input type="email" name="email" placeholder="Email"><br>
<input type="password" name="pass" placeholder="Password"><br>
<input type="submit" value="Login"> <br>
<input type="reset" value="Clear">
</form>

</body>
</html>

Comments