Yes, something like this:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Form</title>
<style type="text/css" media="all">
.section, .section1 {padding-bottom: 15px;}
.section label, .section input {display: inline;}
.section1 label, .section1 input, .section1 textarea {display: block;}
.section label {padding-right: 10px;}
</style>
</head>
<body>
<form action="#" method="post">
<div class="section">
<label for="name">Text</label><input type="text" name="name" id="name" />
</div>
<div class="section">
<label for="email">Text</label><input type="text" name="email" id="email" />
</div>
<div class="section">
<label for="something">Text</label><input type="text" name="something" id="something" />
</div>
<div class="section1">
<label for="comments">Text</label>
<textarea name="comments" id="comments"></textarea>
</div>
<div class="section1">
<input type="submit" name="submitted" value="Send">
</div>
</form>
</body>
</html>
Bookmarks