Here's a down and dirty solution I came up with. Hope this helps.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
HTML Code:
<html>
<head>
<title>Untitled</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
font: 11px verdana, sans-serif;
}
input {
margin: 0;
padding: 0;
font: 11px verdana, sans-serif;
}
label {
width: 100px;
}
</style>
</head>
<body>
<div id="enquiry"><h2>Enquiry</h2>
Please fill in the fields on the form below and click the 'submit'
button to contact IST Media. One of our members of staff will
respond to your enquiry as soon as possible. <br /><br />
<form id="contact-form" method="post" action="">
<label for="firstname">First Name</label><input type="text" name="textfield" /><br />
<label for="company">Company</label><input type="text" name="textfield" /><br />
<label for="email">Email</label><input type="text" name="textfield" /><br />
<label for="telephone">Telephone</label><input type="text" name="textfield" /><br />
<label for="comments">Comments</label><textarea name="textarea"></textarea><br /><br />
<p>Recieve Latest News Via Email:</p><br />
<input name="Yes" type="radio" value="" /><label for="yes">Yes</label>
<input name="No" type="radio" value="" /><label for="no">No</label><br /><br />
<input type="submit" name="Submit" value="Submit" />
</form>
</div>
</body>
</html>
Bookmarks