XHTML and CSS Tutorial - 45 - Submitting Forms

<!DOCTYPE html PUBLIC” -//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml/DTD/xhtmll-transitional.dtd>



<html>

<head>
<style type ="text/css">
</style>


</head>
<body>
<form action ="dosomething" method="post">
Username: <input type="text" name = "username"/>
<br/>
Password: <input type="password" name = "pass"/>
<br/>
<input type = "submit" value = "Submit!">
</form>
</body>








</html>

Comments