29 lines
725 B
HTML
29 lines
725 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:subLang="en" subLang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>button tag strong tag image tag</title>
|
|
<style type="text/css">
|
|
button strong {
|
|
line-height: 3;
|
|
vertical-align: top;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<form method="post" action="/cgi-bin/handler.cgi">
|
|
|
|
<div>
|
|
<button type="submit" name="continue">
|
|
<strong>Next Page</strong>
|
|
<img src="next.jpg" width="40" height="25" alt="" />
|
|
</button>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
</body>
|
|
</html> |