<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>HTML/XHTML</title>
		<link>http://programmingstuff.forumotion.com/html-xhtml-f24/-t1.htm</link>
		<description>Issues related to building and deploying HTML/XHTML</description>
		<lastBuildDate>Mon, 01 Sep 2008 21:08:23 GMT</lastBuildDate>
		<ttl>10</ttl>
		<image>
			<title>HTML/XHTML</title>
			<url>http://illiweb.com/fa/prosilver_grey/site_logo.gif</url>
			<link>http://programmingstuff.forumotion.com/html-xhtml-f24/-t1.htm</link>
		</image>
		<item>
			<title>HTML - [5] Adding an image</title>
			<link>http://programmingstuff.forumotion.com/html-xhtml-f24/html-5-adding-an-image-t16.htm</link>
			<dc:creator>Robin</dc:creator>
			<description>HyperText Markup Language

HTML



[Adding an image]



To get an image on your website you should use the following code:



&lt;img src=&quot;1&quot;&gt;



Explaining: 1 - the link to the image; http://www.something.com/image.jpg

( if the image is in the same folder as the webpage its; image.jpg )

you can also use different files as jpg like; png,gif,bmp and so on.



code you should have now:



Code:&lt;html&gt;



&lt;head&gt;

&lt;title&gt;My Website&lt;/title&gt;

&lt;/head&gt;



&lt;body  ...</description>
			<category>HTML/XHTML</category>
			<pubDate>Mon, 01 Sep 2008 21:08:23 GMT</pubDate>
			<comments>http://programmingstuff.forumotion.com/html-xhtml-f24/html-5-adding-an-image-t16.htm#16</comments>
			<guid>http://programmingstuff.forumotion.com/html-xhtml-f24/html-5-adding-an-image-t16.htm</guid>
		</item>
		<item>
			<title>HTML - [4] Adding a link</title>
			<link>http://programmingstuff.forumotion.com/html-xhtml-f24/html-4-adding-a-link-t15.htm</link>
			<dc:creator>Robin</dc:creator>
			<description>HyperText Markup Language

HTML



[Adding a link]



To add a link to your website you should add this part of code to it:



&lt;a href=&quot;http://www.mysite.com&quot;&gt;Click Here To Go To My Site&lt;/a&gt;



Explaining:

1 - The URL to the website you want to link to; http://www.google.nl, http://www.microsoft.com

2 - The text displayed on the website that is clickable.



You need to always write http:// before any web address.



Code you should have now:



Code:&lt;html&gt;



&lt;head&gt;

&lt;title&gt;My  ...</description>
			<category>HTML/XHTML</category>
			<pubDate>Mon, 01 Sep 2008 20:59:21 GMT</pubDate>
			<comments>http://programmingstuff.forumotion.com/html-xhtml-f24/html-4-adding-a-link-t15.htm#15</comments>
			<guid>http://programmingstuff.forumotion.com/html-xhtml-f24/html-4-adding-a-link-t15.htm</guid>
		</item>
		<item>
			<title>HTML - [3] Adding text</title>
			<link>http://programmingstuff.forumotion.com/html-xhtml-f24/html-3-adding-text-t14.htm</link>
			<dc:creator>Robin</dc:creator>
			<description>HyperText Markup Language

HTML



[Adding some text]



To get text on your website you could just type the text you want to be displayed between the &lt;body&gt; &lt;/body&gt; tags 



Tags you can use to make the text look different: from &lt;h1&gt;TEXT&lt;/h1&gt; to &lt;h6&gt;TEXT&lt;/h6&gt;

to make a break you should use &lt;br&gt; 



code you could have now:



Code:&lt;html&gt;



&lt;head&gt;

&lt;title&gt;My Website&lt;/title&gt;

&lt;/head&gt;



&lt;body bgcolor=&quot;Green&quot;&gt;

&lt;h1&gt;Welcome  ...</description>
			<category>HTML/XHTML</category>
			<pubDate>Mon, 01 Sep 2008 20:53:03 GMT</pubDate>
			<comments>http://programmingstuff.forumotion.com/html-xhtml-f24/html-3-adding-text-t14.htm#14</comments>
			<guid>http://programmingstuff.forumotion.com/html-xhtml-f24/html-3-adding-text-t14.htm</guid>
		</item>
		<item>
			<title>HTML - [2] Background Colour and Page Title</title>
			<link>http://programmingstuff.forumotion.com/html-xhtml-f24/html-2-background-colour-and-page-title-t13.htm</link>
			<dc:creator>Robin</dc:creator>
			<description>HyperText Markup Language

HTML



[Adding a background collor and a title.]



You can set the background collor by adding something to the &lt;body&gt; tag if you change the tag to &lt;body bgcolor=&quot;??&quot;&gt; the page has some collor



?? = you can insert the colour you like here, as word or as code if you type in &quot;Black&quot; the background colour will be black but if you type in &quot;#000000&quot; the background collor will also be black. to keep it simple just use words;  ...</description>
			<category>HTML/XHTML</category>
			<pubDate>Mon, 01 Sep 2008 20:51:14 GMT</pubDate>
			<comments>http://programmingstuff.forumotion.com/html-xhtml-f24/html-2-background-colour-and-page-title-t13.htm#13</comments>
			<guid>http://programmingstuff.forumotion.com/html-xhtml-f24/html-2-background-colour-and-page-title-t13.htm</guid>
		</item>
		<item>
			<title>HTML - [1] The Build Up</title>
			<link>http://programmingstuff.forumotion.com/html-xhtml-f24/html-1-the-build-up-t12.htm</link>
			<dc:creator>Robin</dc:creator>
			<description><![CDATA[<strong>H</strong>yper<strong>T</strong>ext <strong>M</strong>arkup <strong>L</strong>anguage
<br />
HTML
<br />

<br />
[<strong>This is the basic build up of an html document</strong>]
<br />

<br />
<dl class="codebox"><dt>Code:</dt><dd><code>&lt;html&gt;
<br />

<br />
&lt;head&gt;
<br />
&lt;/head&gt;
<br />

<br />
&lt;body&gt;
<br />
&lt;/body&gt;
<br />

<br />
&lt;/html&gt;</code></dd></dl>]]></description>
			<category>HTML/XHTML</category>
			<pubDate>Mon, 01 Sep 2008 20:49:31 GMT</pubDate>
			<comments>http://programmingstuff.forumotion.com/html-xhtml-f24/html-1-the-build-up-t12.htm#12</comments>
			<guid>http://programmingstuff.forumotion.com/html-xhtml-f24/html-1-the-build-up-t12.htm</guid>
		</item>
	</channel>
</rss>