HTML - 13: INPUT FORMS
IN THIS TUTORIAL, WE WILL LEARN ABOUT INOUT FORMS:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHAYAN'S WEBSITE</title>
</head>
<body>
<input type="date"/>
<input type="email" value="enter your mail"/>
<input type="range"/>
<input type="file"/>
<input type="checkbox"/>
<input type="checkbox"/>
<input name="btn"type="radio"/>
<input name="btn"type="radio"/>
<form>
<input type="submit"/>
</form>
<input type ="text" value = "Enter the username"/><br>
<input type ="password"/>
<textarea rows="10" cols="30">
</textarea>
</body>
</html>
Comments
Post a Comment