I need help with html

liunx

Guest
I am a seller on e-bay and would like to add html to my selling page but do not know how. I would like to add little pictures and colour but how? Do you know spcific html I can just copy? Is it that easy.<br />
Thank you:(<!--content-->I'm not familuar with ebay practices so bear with me.<br />
in order to place a graphic on a webpage the graphic must be stored on the server. then the code <br />
<IMG SRC=http://www.webdeveloper.com/forum/archive/index.php/"your_graphic_name" BORDER=0><br />
will place the image on the webpage as long as the graphic and html are in the same directory.<br />
Color is a little different. <br />
Font color and background color use the same values but different formats, for instance black font would be <br />
<FONT COLOR=000000>your text goes here</FONT><br />
while a black background for the entire page would have to be placed in the body tag like this<br />
<BODY BGCOLOR="000000"><br />
<br />
If this is just a 1 time event I would suggest just leaving it alone or find a friend nearby that can do it for you. If you expect to be doing this a lot more in the future then Download <!--more--> a free html editor, (not WYSIWYG), and learn how to use it. I suggest EasyHtml by toniarts. EasyHtml is not WYSIWYG, but you can see what happens when you make certain changes, and it will generate code for you depending on which buttons you click on.<!--content-->sinhart, you forgot the hash sign (#) before the 000000 in the body bgcolor tag.<br />
<br />
To change the font color:<br />
<br />
<font color="color">Text you want this color</font><br />
<br />
"color" would be either red, green, lime, black, orange, purple, white, gray, silver, etc. I have used written colors because for a beginner, they are easy to remember.<br />
<br />
To change the background color:<br />
<br />
Before anything else in the page, type:<br />
<br />
<body bgcolor="color"><br />
<br />
To change the default text color, type the same as the above but add:<br />
<br />
<body bgcolor="color" text="color"><br />
<br />
To add an image:<br />
<br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"location.ext"><br />
<br />
"location.ext" would be the location of the image on the web. An example would be <!-- m --><a class="postlink" href="http://www.somepage.html/images/image.gif">http://www.somepage.html/images/image.gif</a><!-- m --><br />
<br />
<br />
<br />
I hope this makes sense.<br />
<br />
Here is an example of a complete webpage:<br />
<br />
<html><br />
<head><br />
<title>The title of your webpage</title><br />
</head><br />
<body bgcolor="gray" text="green"><br />
Hello<br />
<font color="yellow">Hello</font><br />
<font color="red">Hello</font><br />
</body><br />
</html><br />
<br />
HTML is actually very easy to learn compared to all the other stuff. The "Teach yourself HTML for the World Wide Web" published by Peachpit Press. It is a good book which makes HTML very easy to learn.<br />
<br />
If you have any more questions, ask me.<!--content-->Zach Elfers<br />
Here is an example of a complete webpage<br />
<br />
You've used many deprecated elements and your complete Web page isn't very complete.<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
&nbsp;"http://www.w3.org/TR/html4/strict.dtd"><br />
<br />
<html lang="en-us"><br />
<br />
<head><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<meta http-equiv="Content-Style-Type" content="text/css"><br />
<title></title><br />
</head><br />
<br />
<body style="background: gray; color: green"><br />
<br />
<p>Hello <span style="color: yellow">Hello</span> <span style="color: red">Hello</span></p><br />
<br />
</body><br />
<br />
</html><!--content-->Originally posted by Zach Elfers <br />
sinhart, you forgot the hash sign (#) before the 000000 in the body bgcolor tag. <br />
<br />
Actually the hash is optional I guess, I have seen it used but I never use it.<br />
You are right about using the color names for a beginner, besides being easy to remember they are "safe" in all browsers.<!--content-->Originally posted by sinhart <br />
<br />
You are right about using the color names for a beginner, besides being easy to remember they are "safe" in all browsers. <br />
<br />
Of cource only as long as you use the correct names <br />
<!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/types.html#didx-parameter_entity-2">http://www.w3.org/TR/html4/types.html#d ... r_entity-2</a><!-- m --><br />
<br />
If you use others they might fail, especially in older browsers.<!--content-->Hi...<br />
<br />
It's very simple:<br />
<br />
1. go to a vendor's page at ebay, who's offering similar kind of product--or, select a vendor's page which you've liked.<br />
<br />
2. Go to File Menu--Save As--(html only) and save that file in your computer.<br />
<br />
3. Open that saved file in both in your IE and Notepad.<br />
<br />
4. Just go through the codes to see how does it make to look like that page.<br />
<br />
OR,<br />
<br />
You can design your page in MS Word (use table, give background color to the table cells) and save that file in HTML. Open that HTML file in Notepad, and copy the codes (after BODY through /BODY) and paste it at your ebay description section.<br />
<br />
To add pictures in your ebay, please note that you need to upload the picture to some web host and refer that picture into your image tag.<br />
<br />
Like, if you link a picture of your hard disk say : <img src=http://www.webdeveloper.com/forum/archive/index.php/"file:///c:/my pictures/mypicture.jpg"> which may show correctly in your offline browser, but this won't work on the net. So, you need to upload "mypicture.jpg" to a web server, and refer the image as <img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.SOMEWEBHOST.com/mypicture.jpg"><br />
<br />
OR,<br />
<br />
You may take help of a web designer at your place to make a page for you.<br />
<br />
Hope this helps...<br />
<br />
Best regards<br />
<br />
EssEss<br />
---------------------<br />
IndHosts.Net<br />
Low cost web hosting, reseller web hosting <br />
and web designing<!--content-->
 
Top