hello, welcome to webune forums. one way to make your wesistes look more attractive is by using the legend tag in html. for example i want to make the following:

Password
Please enter a password for your user account. Note that passwords are case-sensitive.
Password:
Confirm Password:


if you liked my HTML code, this is how i did it using the simple HTML code:

<fieldset><legend>Password</legend><div style="width:400px; margin:3px;">Please enter a password for your user account. Note that passwords are case-sensitive.</div><div>Password:<br><input name="password" size="25" maxlength="50" value="" type="password"></div><div>Confirm Password:<br><input name="passwordconfirm" size="25" maxlength="50" value="" type="password"></div></fieldset>