<!DOCTYPE html>
<html>
<head>
<title>HTML form tag</title>
</head>
<body>
<form action="form_tag_get.php" method="post">
<p>Username: <input type="text" name="username"/></p>
<p>Password: <input type="password" name="password"/></p>
<input type="submit" value="Send" />
</form>
</body>
</html>