In Tro Basic HTML Fonts Images Links Marquees Backgrounds Tables FieldSet, TextArea Lists CSS Cursors Divs Page Anchors I Frame Image Maps Music Flash E mail Form Pop Ups Drop Down Menu - MySpace Edits - Center Profile Hide Extended Network Hide Details Section Hide Last Login Hide Contact Box Hide Your Friends Hide General Info. Hide Comments Hide Friends/Comments Hide Search Form Move Contact Box Remove MySpace Links Remove URL Box Resize Comment Images Reverse Com & Friends Scrollable Comments Dot Comers Grey Matter Mega Book Tag Board PHP FTP CHMOD CPanel Scripts Paint Shop Pro Animation Shop Vector Cheat Radio Blog My Space HTML Tester Help Links Color Chart Get-Hosting.net DaRicanBoi.com OrlandoSotoJr.com SoDamnCocky.com MySpace.com/S.D.C. |
Here is a quick way for someone to send you an email- Here is the code: <form method="post" action="mailto:you email address" enctype="text/plain"> <input type="hidden" name="subject" value="feedback form"> <input name="name" value="Ur Name"> <input name="email" value="Ur Email"> <input name="url" value="Ur URL"> <textarea name="feedback" cols="30" rows="6"> -Message- </textarea> <input type="submit" value="send"> <input type="reset" value="clear"></form> Add CSS to your e mail form- Here is the code: [you can change it how ever you want] <form method="post" action="mailto:you email address" enctype="text/plain"> <input type="hidden" name="subject" value="feedback form"><br> <input name="name" value="Ur Name" style="border:#7EAD7E 1px solid;font-size:11px;color:#FFFFFF;background:#c0c0c0"><br> <input name="email" value="Ur Email"style="border:#7EAD7E 1px solid;font-size:11px;color:#FFFFFF;background:#c0c0c0"><br> <input name="url" value="Ur URL"style="border:#7EAD7E 1px solid;font-size:11px;color:#FFFFFF;background:#c0c0c0"><br> <textarea name="feedback" cols="30" rows="6" style="border:#7EAD7E 1px solid;font-size:11px;color:#FFFFFF;background:#c0c0c0"> -Message- </textarea><br> <input type="submit" value="send" style="border:#7EAD7E 1px solid;font-size:11px;color:#FFFFFF;background:#c0c0c0"> <input type="reset" value="clear" style="border:#7EAD7E 1px solid;font-size:11px;color:#FFFFFF;background:#c0c0c0"></form> [---- Radio Buttons ----] Radio Buttons can be used when you want someone to click and select from a category. It allows you to choose on or the other. It only allows you to pick one, if you pick one and then other, it will automaticaly unchoose your first choice and just select the new choice. <form><input type="radio" name="color" value="white"> white <input type="radio" name="color" value="black"> black</form> [---- Check Boxes ----] Check Boxes can be used when you want someone to click and select from a category. This allows you to choose more then one option. You can select more then one box in the list of choices. <form><input type="checkbox" name="size" value="small">Small <input type="checkbox" name="size" value="large">Large</form> Now add to the rest of the form: |