Here's a link to a screenshot. On the left is a word document with an embedded image of the basic website I'm trying to write. On the right side is how my site looks compared to the look I'm going for. I can't figure out why my fieldset (Customer description) doesn't line up on the right side.
Image:

Here's my code:
CODE
<html>
<head>
<!--
Case Assignment 6
Tech Support Page
Author: Richard Winters
Date: December 7, 2006
-->
<title>Technical Support</title>
</head>
<body>
<form name="techsupport" id="techsupport">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td style="color: blue; font-family: Times New Roman; font-size: large; font-weight: bold"
colspan="2" width="100%" align="center">
TECH SUPPORT
</td>
</tr>
<tr>
<td style="font-family: Times New Roman" colspan="2" width="100%">
Please include the following information, how Course Technology may contact you, the product you are
using, and the difficulty you are experiencing.
</td>
</tr>
<tr>
<td width="100%"><label for="fname">First Name</label></td>
</tr>
<tr>
<td width="50%"><input type="text" name="fname" id="fname" size="30" /></td>
<td width="50%" valign="top">
<label for="lname">Last Name</label>
<input type="text" name="lname" id="lname" size="30" />
</td>
</tr>
<tr>
<td width="50%"><label for="email">E-mail address</label></td>
<td width="50%"><input type="text" name="email" id="email" size="30" />
<fieldset>
<legend>Customer description</legend>
<input type="radio" name="cust" id="student" value="student" />
<label for="home">Student</label><br />
<input type="radio" name="cust" id="instructor" value="instructor" />
<label for="bus">Instructor</label><br />
<input type="radio" name="cust" id="other" value="other" />
<label for="char">Other</label><br />
</fieldset>
</td>
</tr>
<tr>
<td width="100"><label for="product">Product name</label></td>
<td>
<label for="prodtype">Product type</label>
<select name="prodtype" id="prodtype">
<option>CD-ROM</option>
<option>Software</option>
<option>Textbook</option>
<option>Other</option></select>
</td>
</tr>
<tr>
<td colspan="2"><input type="text" name="prodtype" id="prodtype" size="30" /></td>
</tr>
<tr>
<td style="font-family: Times New Roman">Please give a brief description of the problem</td>
<td><textarea name="description" id="description" rows="5" cols="50"></textarea></td>
</tr>
<tr>
<td><input type="submit" value="Submit" /> <input type="reset" value="Reset" /></td>
</tr>
</table>
</form>
</body>
</html>
I'm still confused on formatting tables and whatnot (obviously lol)
Any help would be appreciated.
This post has been edited by richiewinters: 8 Dec, 2006 - 06:01 PM