How Create a Validation Form in HTML5
<html><head>
<title>HTML5 Form Validation</title>
</head>
<body>
<form action="http://www.example.com/login/" method="post">
<label for="username">Username:</label>
<input type="text" name="username" id="username" required="required" /><br />
<label for="password">Password:</label>
<input type="password" name="password" id="password" required="required" />
<input type="submit" value="Submit" />
</form>
</body>
</html>
0 comments:
Post a Comment