drumgodmaggott
Took a look at it for a couple seconds and a few red flags went up.
*. You forgot to close all of your paragraph, bold, and italic tags <p><b><i>. You open them, but forgot to close them:
YOUR CODE
[html]
<p style="color:red"<I><b>ADD WILL</p>
[/html]
CORRECTED CODE
[html]
<p style="color:red"><I><b>ADD WILL</b></i></p>
[/html]
MY VERSION USING ONLY STYLE ATTRIBUTE
[html]
<p style="color:#FF0000; font-style:italic; font-weight:bold;">ADD WILL</p>
[/html]
2. Your forms action and method are left blank. You need to specify both. The action should be the page you want to submit the data to. Ex: index.php
YOUR CODE
[html]
<form action="">
[/html]
CORRECTED CODE
[html]
<form action="index.php" method="get">
[/html]
You can use "get" or "post" methods when creating a form. Not a really big difference except "get" variables are visible in the url and post variables are not. I think "get" has a smaller limit of bytes that can be transfered through the url than the "post" method.
*. Your image is not showing up because the path to it changes as soon as you move the html to myspace.com. It works fine on your local machine because you have the image newhure.jpg sitting in the same folder as the html file you created. If you move that image anywhere else, it will not show up. You can easily change to code to reflect this:
YOUR CODE
[html]
<img border="0" src="newhure*.jpg" width="*00" height="*50">
[/html]
CORRECTED CODE
[html]
<img border="0" src="http://www.myspace.com/where/ever/your/file/is/located/newhure*.jpg" width="*00" height="*50">
[/html]
This should help you get started.
SyntaX
[url=http://www.syntax******.info/tools/services.php]Speed Up Windows XP[/url]
[url=http://www.syntax******.info/tools/ip.php]Get An Ip Address[/url]
[url=http://www.syntax******.info/tools/base_converter.php]Base Converter[/url]
--------------------------------
[URL=http://www.boninroad.com/syntax******/]Old Site[/URL]
[URL=http://www.syntax******.info]Comming Soon[/URL]