Login form
Source code:
<html>
<head>
<title>login form</title>
</head>
<body>
<h1>login form</h1>
<label>name</label>
<input type="text">
<br>
<label>age</label>
<input type="number">
<br>
<label>password</label>
<input type="password">
<br>
<input type="submit">
</body>
</html>
Output:
Comments
Post a Comment