<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>buttons</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="all">
@import "../css/vertically-aligned.css";
</style>
<!--[if IE]>
<style type="text/css" media="all">
@import "../css/vertically-aligned-ie.css";
</style>
<![endif]-->
</head>
<body>
<a href="../forms/buttons.yml">Form config file</a><br/><br/>
<form action="" method="post">
<div class="text">
<input type="text" />
</div>
<div class="button">
<input type="button" value="Default Button" />
</div>
<div class="contentbutton">
<button name="cnb1" type="button"><i>some</i> <b>markup</b></button>
</div>
<div class="submit">
<input name="submit" type="submit" value="Submit" />
</div>
<div class="reset">
<input type="reset" value="Reset" />
</div>
<div class="button">
<input type="button" value="Handler" handler="function() { alert("click") }" />
</div>
</form>
</body>
</html>