<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HTML.co.uk &#187; HTML Tutorials</title>
	<atom:link href="http://www.html.co.uk/category/html-tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.html.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 06 Jan 2010 12:45:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>URL Encoding for HTML using the ASCII Character Set</title>
		<link>http://www.html.co.uk/207/url-encoding-for-html-using-the-ascii-character-set.html</link>
		<comments>http://www.html.co.uk/207/url-encoding-for-html-using-the-ascii-character-set.html#comments</comments>
		<pubDate>Wed, 02 Dec 2009 16:30:14 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[ascii character set]]></category>
		<category><![CDATA[URL Encoding for HTML]]></category>
		<category><![CDATA[url encoding reference]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=207</guid>
		<description><![CDATA[The URL encoding basically converts different characters into a certain format so that it can be safely transferred on the internet. ]]></description>
			<content:encoded><![CDATA[<p class="blogtext">The URL encoding basically converts different characters into a certain format so that it can be safely transferred on the internet. URL is actually known as uniform resource locator and the web browsers request different pages form a web server by using a URL. The only way of sending the URL over the net is to use the ASCII character-set. Sometimes URLs contains certain characters which are outside the ASCII character set. In such cases the URL should be converted and this is what is done by URL encoding so that it is changed to a valid ASCII format. <span id="more-207"></span></p>
<p class="blogtext">Functions such as JavaScript, ASP and PHP can be used for URL encoding a string. There are a large number of ASCII characters which are represented in different ways and you will have to remember all these to become an expert in URL encoding. The ASCII character space is displayed through URL-encoding %20. By using %21 URL-encoding you can display an exclamation mark as well. On the other hand, the ASCII character % is denoted by %25 URL-encoding. The ASCII character + is denoted by %2B URL-encoding. Remembering all these characters and URL encoding is not easy but gradually you will be able to remember most of them or the most important of them.</p>
<p class="blogtext">Another very important ASCII characters are the numbers and these can also be denoted by various URL-encodes. ASCII characters such as 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9 is denoted by %30, %31, %32, %33, %34, %35, %36, %37, %38 and %39. Remembering these codes are quite easy because these are in sequence. Displaying all the English alphabets from A to Z is very important and these are displayed using URL-encoding %41 to %59 till Y and % 5A for Z.</p>
<p class="blogtext">There are various other ASCII characters that are described by various other URL-encoding. ASCII characters such as NUL, SOH and STX which are described as null character start of header and start of text is encoded through %00, %01 and %02. Some other ASCII character such as EOT, ENQ and ACK which are described as end of transmission, enquiry and acknowledge these are encoded as %04, %05 and %06. Various other ASCII characters such as BEL, BS, HT, LF and VT are described as bell (ring), backspace, horizontal tab, line feed and vertical tab are actually encoded through %07, %08, %09, %0A and %0B.</p>
<p class="blogtext">Various other ASCII characters includes DLE, DC1, DC2, DC3, DC4, NAK and SYN is described as data link escape, device control 1, device control 2, device control 3, device control 4, negative acknowledge and synchronize. The above mentioned characters are coded as %10, %11, %12, %13, %14, %15 and %16. All these characters can be easily found online and you could copy it from their as well. URL encoding is essential for HTML as it makes the entire job much easier. Any search engine will provide information on URL encoding and it is easily understandable as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/207/url-encoding-for-html-using-the-ascii-character-set.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting HTML Based Web Pages into XHTML: Our Quick Guide</title>
		<link>http://www.html.co.uk/205/converting-html-based-web-pages-into-xhtml-our-quick-guide.html</link>
		<comments>http://www.html.co.uk/205/converting-html-based-web-pages-into-xhtml-our-quick-guide.html#comments</comments>
		<pubDate>Sun, 22 Nov 2009 16:51:41 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[converting html into xhtml]]></category>
		<category><![CDATA[html to xhtml]]></category>
		<category><![CDATA[xml tips]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=205</guid>
		<description><![CDATA[Converting HTML based web pages into XML is not a big deal but you need to follow certain simple steps for doing it in the correct way. You should always convert the pages into some semantically meaningful and application specific mark up language.]]></description>
			<content:encoded><![CDATA[<p class="blogtext">Converting HTML based web pages into XML is not a big deal but you need to follow certain simple steps for doing it in the correct way. You should always convert the pages into some semantically meaningful and application specific mark up language. One of the semantically meaningful markup languages is the MathML which is also known as chemical mark up language. The W3C’s XHTML recommendation ahs provided a convenient list of differences between these two languages. There are a number of differences that should be considered while understanding how to convert HTML based web pages into XML. Some differences would even surprise HTML developers because these are so simple and unique. <span id="more-205"></span></p>
<p class="blogtext">It is already known that XML element names are case sensitive or in a hypothetical XML form of HTML. The difference can be explained with an example as  &lt;img&gt; tag would actually represent a different element than &lt;IMG&gt; or &lt;Img&gt;. Hence the XHTML authors opted for all lower case element names which solved this confusion. On the other hand various other empty elements that are represented in HTML as &lt;br&gt;, &lt;hr&gt;, &lt;img&gt;, etc. must use some special XML the empty element tag form with a slash. Just putting a slash can solve this problem as &lt;br&gt; tag becomes &lt;br/&gt;. Then there are certain browsers that may not understand XML. Some of these browsers may choke on this empty form.</p>
<p class="blogtext">This problem can be easily solved as well as you can put proceed the slash with a space. Hence a tag becomes &lt;br /&gt; instead of the earlier &lt;br/&gt;. The above mentioned is one of the very rare and you can only blame the browser vendor. But now you can easily solve such problems by putting a space after the slash. But there is another very easy and time saving way to convert the existing HTML documents into the XHTML form. The easy way is to use Dave Raggett’s free HTML Tidy which is a very useful utility. This programme is available at the W3C website and is totally free to use as well. The utility Tidy can work on almost all platforms and a wide variety of command parameters which actually direct its processing.</p>
<p class="blogtext">A wide number of vendors and developers have actually incorporated or integrated Tidy into their own product that proves it utility. On some Windows based devices there is a very popular tool which is named as Chami.com&#8217;s free HTML kit. But then converting your HTML documents to XML application is a bit difficult. HTML element names don’t have an inherent meaning which is actually a hallmark of all XML applications as a normal person thinks of them. Converting them is not that easy as it has a lot of commands involved in it and you can easily find all of them online. Installing some application like Tidy is a better option because such programmes are very user friendly and will have minimum of hassle. It is very easy to install and you can easily download it online as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/205/converting-html-based-web-pages-into-xhtml-our-quick-guide.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding XHTML: A Basic and Simple Guide</title>
		<link>http://www.html.co.uk/203/understanding-xhtml-a-basic-and-simple-guide.html</link>
		<comments>http://www.html.co.uk/203/understanding-xhtml-a-basic-and-simple-guide.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 16:43:18 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[Understanding XHTML]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xhtml guide]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=203</guid>
		<description><![CDATA[The XHTML stands for Extensible HyperText Mark-up Language. XHTML is considered as a stricter and a cleaner version of HTML. XHTML is in the family of the XML mark up language.]]></description>
			<content:encoded><![CDATA[<p class="blogtext">The XHTML stands for Extensible HyperText Mark-up Language. XHTML is considered as a stricter and a cleaner version of HTML. XHTML is in the family of the XML mark up language. Prior to HTML 5 it was defined as SGML or standard generalised mark up language but XHTML is actually an application of XML or we can say a very restrictive subset of the earlier SGML. The XHTML has become had became World Wide Web consortium. The XHTML is actually a reformulation of three HTML 4 document type. It is believed that XHTML is the next step in the evolution of the internet. Hence we can say that XHTML has amazing future and backward compatibility. <span id="more-203"></span></p>
<p class="blogtext">Some people believe that XHTML is not as useful as it is said to be but it proves to be one of the most reliable product in the future. XHTML is somewhere related to HTML and this can be proved by the following points:</p>
<ul>
<li>In HTML there are some tags which always remain empty and do not have a closing tag either. On the other hand in XHTML each and every element must be closed.</li>
<li>The XTML has some similarity with HTML which permits omitting the end tags for various elements.</li>
<li>In HTML each and everything is case insensitive whereas in XML every element and attributes are case sensitive. Well XHTML requires all the elements to be in lower case.</li>
<li>Some versions of HTML do permit quotes to be omitted from the actual attribute values. Whereas in XHTML all the attribute values should be enclosed by quotes it can be single or double.</li>
<li>HTML does permit attribute minimisation options in which a Boolean attributes can actually have their value entirely omitted.</li>
<li>Certain required elements can be omitted in HTML in which they are added by a parser. Whereas in XHTML the DOM must be determined without even knowing what all elements are actually required hence these tags should be specified properly.</li>
</ul>
<p class="blogtext">XHTML is actually identical to HTML 4.01 which makes it even more user friendly. All browsers in the world support XHTML which is the biggest benefit of it. As it is so compatible hence it is used by a number of content management systems all over the world. It is very easy and interesting to learn how to publish XHTML 1.0 type of documents in the HTML compatible manner. Such sought of HTML compatible media content is actually sent using the HTML media types. Mostly all web browsers support the XHTML media types but the Internet Explorer of Microsoft does not support it.</p>
<p class="blogtext">The Internet Explorer does not render the file but actually a dialogue box opens which invites the user to save the content. The very latest versions of Internet Explorer show this tendency. The XHTML is not used preferred by everyone but it will be in great use in the coming future. XHTML is still evolving and will be very effective in the coming future. Learning and understanding XHTML is very easy and you can easily get all the information on the internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/203/understanding-xhtml-a-basic-and-simple-guide.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Character Entities in HTML and Other Advice</title>
		<link>http://www.html.co.uk/199/character-entities-in-html-and-other-advice.html</link>
		<comments>http://www.html.co.uk/199/character-entities-in-html-and-other-advice.html#comments</comments>
		<pubDate>Fri, 30 Oct 2009 09:33:07 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[ampersand]]></category>
		<category><![CDATA[character entities in html]]></category>
		<category><![CDATA[greater than]]></category>
		<category><![CDATA[html advice]]></category>
		<category><![CDATA[html tips]]></category>
		<category><![CDATA[less than]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=199</guid>
		<description><![CDATA[Some characters are actually reserved in HTML which should be replaced with character entities. A number of signs such as greater than or less than cannot be used because the browser will treat them for mark up. If anyone all around the world wants to put these symbols then he or she must use character entities in the actual HTML source.]]></description>
			<content:encoded><![CDATA[<p class="blogtext">Some characters are actually reserved in HTML which should be replaced with character entities. A number of signs such as greater than or less than cannot be used because the browser will treat them for mark up. If anyone all around the world wants to put these symbols then he or she must use character entities in the actual HTML source. These entities are fixed and you will have to put fixed characters. These entities are like symbols which are to be remembered whenever you are putting some signs online. You can easily find all the character entities online which make the job much easier. <span id="more-199"></span></p>
<p class="blogtext">At first you will face some difficulty but gradually you will get used to it and these are easy to remember as well. There is a disadvantage as well because all browsers may not support these entities but most of them do support. One of the most common and important entities in HTML is the non breaking space. HTML normally truncates spaces that you will put in the text and sometimes you really want to put spaces with a purpose. Even if you put 5 spaces in your text HTML will automatically remove 4 spaces out of them. In order to use spaces between text you will have to use &amp;nbsp; character entity.</p>
<p class="blogtext">Following are some of the most commonly used character entities include &amp;lt; which is used for less than sign. The &amp;gt; is used for greater than sign and &amp;cent; is used for a cent sign. Some other very important charter entities are &amp;pound; which is used for a pound and &amp;yen; yen. The description of copyright and registered trademark is very frequently used and for putting it you will use &amp;copy; and &amp;reg; character entities. Above mentioned are very important and remembering them will help you in many ways.</p>
<p class="blogtext">There is an entity number given to each of the entity characters which makes it even easier for you to remember it. Various other signs are important and are used very often but HTML may not support it as well. Some of the most important punctuation characters include a fraction slash which is presented through &amp;frasl; entity and it is numbered as &amp;#8260. Inverted exclamation mark is represented through &amp;iexcl; and this entity is numbered as &amp;#161. The trademark sign can only be represented through ™ which is numbered as &amp;#8482;. Another very important character entity is for a thin space which can only be displayed through &amp;thinsp;. It is numbered as &amp;#8201; and is very commonly used as well.</p>
<p class="blogtext">On the other hand, if you are producing a website that includes mathematical symbols then you will have to use separate set of character entities. If you want to add a division sign inside the website then the character entity used is &amp;divide; and it is numbered as &amp;#247;. The degree sign is commonly used as well which is numbered as &amp;#176; and the character entity is &amp;deg;. Learning these character entities is very important in order to efficiently create a website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/199/character-entities-in-html-and-other-advice.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defining Character Sets for HTML: Important for Different Languages and Alphabets</title>
		<link>http://www.html.co.uk/197/defining-character-sets-for-html-important-for-different-languages-and-alphabets.html</link>
		<comments>http://www.html.co.uk/197/defining-character-sets-for-html-important-for-different-languages-and-alphabets.html#comments</comments>
		<pubDate>Wed, 28 Oct 2009 17:15:59 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[ISO-8859-1]]></category>
		<category><![CDATA[ISO-8859-10]]></category>
		<category><![CDATA[ISO-8859-2]]></category>
		<category><![CDATA[ISO-8859-3]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=197</guid>
		<description><![CDATA[Character sets basically decide how bytes that represent your text of the HTML document are translated into readable characters. The Windows Internet Explorer basically interprets bytes into a document as per the applied text set translations.]]></description>
			<content:encoded><![CDATA[<p class="blogtext">Character sets basically decide how bytes that represent your text of the HTML document are translated into readable characters. The Windows Internet Explorer basically interprets bytes into a document as per the applied text set translations. The browser should actually know what character to use in order to display the HTML page in the right way. The character set such as ASCII used to support some time ago as it does support numbers from 0-9. Many countries may use some characters which are not the part of ASCII hence they use a default character set that is ISO-8859-1. <span id="more-197"></span></p>
<p class="blogtext">There are different character sets for different countries as North America, Western Europe, Latin America, the Caribbean, Canada and Africa supports ISO-8859-1 character sets. On the other hand, countries from Eastern Europe support ISO-8859-2 and are described as Latin alphabet part 2. SE Europe, Esperanto and miscellaneous other countries in the same region support ISO-8859-3 character set which is known as Latin alphabet part 3. Character set ISO-8859-4 is supported in a number of Scandinavian countries and Baltic’s. The ISO-8859-5 character set is used where Cyrillic alphabet is used such as Bulgaria, Belarus, Russia and Macedonia. Various languages that use Arabic alphabets support ISO-8859-6 character set.</p>
<p class="blogtext">The Greek language and various mathematical symbols that are derived from it support ISO-8859-7 which is also described as Latin or Greek part 7. The Nordic language supports ISO-8859-10 which is also described as Latin 6 Lappish, Nordic and Eskimo. The Japanese and Korean language is supported by ISO-2022-JP-2 and ISO-2022-KR character sets. It is not as complex as it seems but all these details are very important to know in order to define character sets. All the characters sets which are explained above are very limited in size. Hence all of them are not compatible at multilingual environments.</p>
<p class="blogtext">There is a Unicode standard which actually covers all characters, symbols and punctuations that is used all around the world. This is a very interesting and helpful standard where you can process any sort of platform, language or program. The Unicode Standard is basically developed by the Unicode Consortium. The ultimate aim is to replace the already existing character sets. The Unicode Standard has recently become a success and it is implemented in Java, XML, CORBA 3.0, WML, ECMAScript (JavaScript). It is also supported in a number of operating systems and is also supported by all modern browsers.</p>
<p class="blogtext">A number of character sets implement the Unicode and UTF-8 and UTF-16 are the most commonly used encodings. In the UTF-8 a character set can be from 1 to 4 bytes. It can also represent any sort of character that is there in the Unicode. It is the most preferred encoding for e-mail and webpages. The UTF-16 is actually a variable length character. It is actually capable of encoding Unicode repertoire. It is used in a number of major operating systems such as Microsoft Windows 2000, XP, 2003, Vista, CE and Java and .NET byte code environment as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/197/defining-character-sets-for-html-important-for-different-languages-and-alphabets.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How and why you should use META Tags</title>
		<link>http://www.html.co.uk/196/how-and-why-you-should-use-meta-tags.html</link>
		<comments>http://www.html.co.uk/196/how-and-why-you-should-use-meta-tags.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 08:00:32 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[importance of meta tags]]></category>
		<category><![CDATA[META Robots Tag]]></category>
		<category><![CDATA[META Tags]]></category>
		<category><![CDATA[using meta tags]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=196</guid>
		<description><![CDATA[META tags are a very important element of HTML because these can help direct large amount traffic towards your website or you can also hide a certain page from being a search engine.]]></description>
			<content:encoded><![CDATA[<p class="blogtext">META tags are a very important element of HTML because these can help direct large amount traffic towards your website or you can also hide a certain page from being a search engine. These META tags should be decided intelligently so that your website can be easily searched within a search engine. We can say that META tags are basically used to specify keywords, description and a page’s title. These are of various types and each type has a very important role to play. <span id="more-196"></span></p>
<p class="blogtext"><strong>The META Description Tag </strong></p>
<p class="blogtext">This is one of the most important META tag and is put for influencing the readers. It generally consists of 200 to 250 characters but only a small part is displayed on the screen. When you search for something on a search engine the first thing you get is a title but this title is provided with certain information and this small description is known as the description META Tag. You are only able to read a small portion of the article and for reading the entire article you will have to click on the title and open that particular webpage. The biggest benefit of creating a META Description Tag is that it provides some control on a number of crawlers. The simplest form of doing it is taking the first sentence of your body copy and using it as a META Description Tag.</p>
<p class="blogtext"><strong>The META Keywords Tag</strong></p>
<p class="blogtext">Another very important META Tag is the META Keywords Tag. The META Keywords Tag provides extra text for a number of crawler based search engines. These Tags are normally ignored by most of the crawlers but it can still provide you that slight edge over others. The META Keywords Tag should be decided intelligently in order to get positive results. This can be explained by an example lets suppose you had some page that was all about “car rental” and you have mentioned the same word a few times in the actual page then you should take “car rental” as the META Keywords Tag. If you follow the above mentioned step then the META Keywords Tag will definitely boost the page. On the other hand if your page does not have the words “car rental” then keeping it as a META Keywords Tag is of no use. Hence we can say that this META Tag works in conjunction with the text that you have in the body copy. But there is no guarantee that all crawlers will support it but may be a few will which will help improve the ranking of that very page.</p>
<p class="blogtext"><strong>The META Robots Tag</strong></p>
<p class="blogtext">The META Robots Tag is very important as well. This Tag helps you to specify that some particular page should not be indexed by any search engine. You can easily keep out the spiders by adding the text in between the head tags of the page which you don’t want to get indexed. The important thing is that this META Tag is supported by all crawlers and by using it you can easily block any page that you want.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/196/how-and-why-you-should-use-meta-tags.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using HTML Tag Attributes: How to Correctly Use Attributes and Tags in HTML</title>
		<link>http://www.html.co.uk/193/using-html-tag-attributes-how-to-correctly-use-attributes-and-tags-in-html.html</link>
		<comments>http://www.html.co.uk/193/using-html-tag-attributes-how-to-correctly-use-attributes-and-tags-in-html.html#comments</comments>
		<pubDate>Mon, 05 Oct 2009 13:37:49 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[html attributes]]></category>
		<category><![CDATA[html image]]></category>
		<category><![CDATA[html link]]></category>
		<category><![CDATA[HTML Tag Attributes]]></category>
		<category><![CDATA[HTML Tags]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=193</guid>
		<description><![CDATA[HTML tags are the basis for web page design. For more flexibility in designing HTML were defined attributes for HTML tags to change the behaviour of a specific HTML tags. There are many cases when designing a web page if you want to change the default behaviour of tags.]]></description>
			<content:encoded><![CDATA[<p class="blogtext">HTML tags are the basis for web page design. For more flexibility in designing HTML were defined attributes for HTML tags to change the behaviour of a specific HTML tags. There are many cases when designing a web page if you want to change the default behaviour of tags. For example, you could change the background colour of the entire page or a section of the page. You can change the alignment of some text or a unique style for the representation of a tag.<span id="more-193"></span></p>
<p class="blogtext">Here are some examples of HTML attributes</p>
<p class="blogtext">HTML tag is used to change the background colour or image for the whole body from a website. Understand that browser displays the contents of the body tag on the greater part of the site. By default, the background of browsers used when the tag &lt;body Begegnung&gt; is white. If you want a background colour other than white, use the bgcolour attribute. The following day will change the background colour of a Web page from the default white to gray &lt;body bgcolour = &#8220;gray&#8221;&gt;</p>
<p class="blogtext">If you want a picture, including the background to a web page, you can use the following code:<br />
&lt;body Background = / images / background.gif&gt;<br />
This example assumes that you have specified a folder on your Web server images, and in this case, there is an image called background.gif. In the case of an image in the background when the image is not large enough to fill the entire bottom of your Web site, the browser displays the image repeated vertically and horizontally to fill the background.</p>
<p class="blogtext">Link with anchor tag</p>
<p class="blogtext">The World Wide Web, the basic benefit depends on their ability to integrate documents and on the Internet so that users with a fast connection from one side to the other side. Linking documents to HTML via the anchor (&lt;a&gt;) tag. The anchor tag is not in itself sufficient to say, a link to the browser, too.</p>
<p class="blogtext">&lt;a href = http://oursponsorssite.com&gt; Visit our Sponsors &lt;/a&gt;<br />
This specific HTML code intimates the browser that the text &#8220;Please you should visit our sponsors&#8221; is the anchor text of a link. When the user clicks on the anchor text, it is referred to oursponsorswebsite.com URL.</p>
<p class="blogtext">Displaying an image using the image tag</p>
<p class="blogtext">HTML pages would be pretty boring without the use of images. The need to tell the browser to find where an image is a good example of how to use the HTML attributes. The images are included. Insufficient Similar to the anchor tag above example, the tag would be alone. The attribute image tag &#8220;src&#8221; is necessary to tell the browser where to display the image, as in the following example:</p>
<p class="blogtext">&#8220;/ &lt;img src = images / logo.gif&#8221; width = &#8220;150&#8243;&gt;</p>
<p class="blogtext">this block of code tells the browser to place an image in the document. The browser will be directed to the image file logo.gif from the images reach the top level folder for the document. You can also specify the width attribute defined in the day.</p>
<p class="blogtext">
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/193/using-html-tag-attributes-how-to-correctly-use-attributes-and-tags-in-html.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Web page using HTML: Covering the Basics and Bare Minimum</title>
		<link>http://www.html.co.uk/192/create-a-web-page-using-html-covering-the-basics-and-bare-minimum.html</link>
		<comments>http://www.html.co.uk/192/create-a-web-page-using-html-covering-the-basics-and-bare-minimum.html#comments</comments>
		<pubDate>Mon, 05 Oct 2009 13:32:48 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[html body tag]]></category>
		<category><![CDATA[html header tag]]></category>
		<category><![CDATA[HTML Tags]]></category>
		<category><![CDATA[html tutorial]]></category>
		<category><![CDATA[making a webpage]]></category>
		<category><![CDATA[making a website]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=192</guid>
		<description><![CDATA[This article describes how to create a web page using HTML (Hypertext Markup Language). You can use the steps outlined here with a simple Web browser and Windows Notepad. However, make sure you register with HTML files. "HTML". Notepad appends. "Txt" extension]]></description>
			<content:encoded><![CDATA[<p class="blogtext">This article describes how to create a web page using HTML (Hypertext Markup Language). You can use the steps outlined here with a simple Web browser and Windows Notepad. However, make sure you register with HTML files. &#8220;HTML&#8221;. Notepad appends. &#8220;Txt&#8221; extension<span id="more-192"></span></p>
<p class="blogtext">The HTML files contain structures known as tags. Tags, text, particularly left and right hooks around like &lt;html&gt; or &lt;/ html&gt;. Note: Normally, there is no space between a colon and the text. However, the rooms will be used in this article. In this way, the tags appear as text and not executed as code from a browser.</p>
<p class="blogtext">&lt;html&gt; mark the beginning of the code and HTML &lt;/ html&gt; indicates the end. They can also add tags to add an additional structure. Generally, the &#8220;head&#8221; and then &#8220;body&#8221; are mentioned in the section between the tags. Thus, our single file can be written as &lt;html&gt; &lt;head&gt; &lt;/ head&gt; &lt;body&gt; &lt;/ body&gt; &lt;/ html&gt;.</p>
<p class="blogtext">1. Add a title to the HTML file. In general, the HTML files containing a title (Note: This is not the same as the header. &#8220;Head will be presented below in step 3). Title defines the text in the &#8220;title bar&#8221; of the browser display when you make a specific page. Titles are placed in the &#8220;head&#8221; (that is, between the header and &lt;/ head&gt;). For example, one could simply file contains the following titles: &lt;title&gt; this is the title &lt;/ title&gt;</p>
<p class="blogtext">2. Add content to the site. In step 1, we set the text in the title bar of the browser window appears. However, to display text in the browser window itself, we need (this text in the body section of the file In other words, between &lt;body&gt; and &lt;/ body&gt;) tag. This can be done with the paragraph tag, &lt;p&gt;. For example, for &#8220;HTML Web Design is an interesting area. The developer shall install a functional and useful website,&#8221; We have &lt;p&gt; HTML Web Design is an interesting area. The developer is required to install a site functional and useful web &lt;/ p&gt; in the body section.</p>
<p class="blogtext">3. Add a header. Then we add header content of the paragraph. Text header is usually larger than paragraphs of text. Use the &#8220;real&#8221; size can be defined by CSS (Cascading Style Sheets). Although not covered here, will be CSS in the Learning mentioned HTML &#8211; Part 3 &#8211; Basic CSS formatting &#8220;section. A header can be added to the lineup &lt;h1&gt;. Thus we can write the following headings : &lt;h1&gt; HTML Web Design &lt;/ h1&gt;</p>
<p class="blogtext">4. See code page. In general, sites on the Internet containing the constructs above (together) with a number of other encoding functions. To see the HTML used to generate a page, go for it and the View &#8220;&gt; Select Source&#8221; or &#8220;View&gt;&#8221; Source option menu. Using the menu, try &lt;title&gt; research &lt;h1&gt; &lt;p&gt; and tags on a page.</p>
<p class="blogtext">The above are the simple steps to create a webpage with the use of notepad and browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/192/create-a-web-page-using-html-covering-the-basics-and-bare-minimum.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Positioning Properties for getting the desired Content Layout</title>
		<link>http://www.html.co.uk/189/css-positioning-properties-for-getting-the-desired-content-layout.html</link>
		<comments>http://www.html.co.uk/189/css-positioning-properties-for-getting-the-desired-content-layout.html#comments</comments>
		<pubDate>Sat, 19 Sep 2009 06:58:59 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[cascading style sheets]]></category>
		<category><![CDATA[css float]]></category>
		<category><![CDATA[css layout]]></category>
		<category><![CDATA[css position]]></category>
		<category><![CDATA[CSS Position Properties]]></category>
		<category><![CDATA[css positioning]]></category>
		<category><![CDATA[css tutorial]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=189</guid>
		<description><![CDATA[On the WebPages, there are 2 models for positioning the content. Both the models are valid and it is always best to use two models to layout the WebPages with CSS. ]]></description>
			<content:encoded><![CDATA[<p class="blogtext"><strong>Two models float and position</strong></p>
<p class="blogtext">On the WebPages, there are 2 models for positioning the content. Both the models are valid and it is always best to use two models to layout the WebPages with CSS. <span id="more-189"></span></p>
<p class="blogtext"><strong>Float</strong></p>
<p class="blogtext">Float takes out the element from the normal flow of the WebPages and has many other elements around it. It is seems confusing to use CSS for layout at first but is can satisfy you once it is completely understood.</p>
<p class="blogtext"><strong>Position</strong></p>
<p class="blogtext">When people think of CSS positioning, position is the one that is thought by everyone. This defines whether the element is in fixed, absolute, relative or static position.</p>
<p class="blogtext"><strong>CSS Position Properties </strong></p>
<p class="blogtext">As it is mentioned above, if you have decided to position the pages within the position property, you need to use at least one of the style properties in order to define where the elements should be placed.</p>
<p class="blogtext"><strong>Bottom</strong></p>
<p class="blogtext">The element should be placed at the location up from bottom of the browser. One thing that is to be noted is, if the negative values are used in these positions, you have to move the elements in opposite location.</p>
<p class="blogtext"><strong>Left</strong></p>
<p class="blogtext">The element can be placed over from the right side of the window.</p>
<p class="blogtext"><strong>Right</strong></p>
<p class="blogtext">The element can be placed from right side of the window.</p>
<p class="blogtext"><strong>Top</strong></p>
<p class="blogtext">The element can be placed down from top of the window.</p>
<p class="blogtext"><strong>CSS Positioning – it is not Really Alignment</strong></p>
<p class="blogtext">There were no many ways to position the items on the screen when HTML came first. Few of them were the align attribute that allowed to position the element related to its current position. In favor of the style sheets, the attribute has been deprecated. There are two attributes and among that, only one works for the text.</p>
<p class="blogtext"><strong>Text-align</strong></p>
<p class="blogtext">This does all the things that you would expect from an align-attribute. It helps you to align the text to center, right and even justify. However, this works only with the text.</p>
<p class="blogtext"><strong>Vertical-align</strong></p>
<p class="blogtext">This allows you to align the inline element to baseline top, bottom, middle and many other positions.</p>
<p class="blogtext"><strong>Position the Things on Top one after another</strong></p>
<p class="blogtext">When positioning the elements, there are some chances that one element will overlap another. On the normal course of events, browser will put up the thing that comes first at the bottom.  However, with Z-index property, you will be able to push the elements to other location</p>
<p class="blogtext"><strong>Z-index</strong></p>
<p class="blogtext">This defines the stack order of the elements.</p>
<p class="blogtext">After positioning, give shape to elements</p>
<p class="blogtext">In order to define the shape of the elements, there are two properties. The content in the element is clipped so that it fits the shape.</p>
<p class="blogtext"><strong>Clip</strong></p>
<p class="blogtext">Shape of the element is defined by clip. Usually, this amounts to height and width of the rectangle. If the content is longer, then it will be clipped.</p>
<p class="blogtext"><strong>Overflow</strong></p>
<p class="blogtext">This tells the browser that, what should be done if the content is not fitted in the area that is clipped. The content can be hidden and it can be continued as usual.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/189/css-positioning-properties-for-getting-the-desired-content-layout.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Outline Styles are often Confusing</title>
		<link>http://www.html.co.uk/185/css-outline-styles-are-often-confusing.html</link>
		<comments>http://www.html.co.uk/185/css-outline-styles-are-often-confusing.html#comments</comments>
		<pubDate>Fri, 04 Sep 2009 11:09:16 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>
		<category><![CDATA[cascading style sheets]]></category>
		<category><![CDATA[css layout]]></category>
		<category><![CDATA[CSS Outline Styles]]></category>
		<category><![CDATA[css tutorial]]></category>
		<category><![CDATA[outline property]]></category>

		<guid isPermaLink="false">http://www.html.co.uk/?p=185</guid>
		<description><![CDATA[Outline property of the CSS is a confusing property. When this property is learned first, it is hard to understand how the CSS Outline property is even remotely different from border property.]]></description>
			<content:encoded><![CDATA[<p class="blogtext">Outline property of the CSS is a confusing property. When this property is learned first, it is hard to understand how the CSS Outline property is even remotely different from border property. WWW explains that it has the following differences. <span id="more-185"></span></p>
<ul>
<li>Space is not utilized by Outlines</li>
<li> Outlines can be non-rectangular as well.</li>
</ul>
<p class="blogtext"><strong>Outlines don’t take up space</strong></p>
<p class="blogtext">The above statement is confusing. Just think that how objects in the webpage cannot take the space on WebPages. The outline property does not take the space because it will always be placed on top of the element’s box.<br />
Around an element, if an outline is placed, it does not have any kind of effect on how the elements are placed on the page. It will not change the position or size of the element. If the outline is put on the element, it will surely take the exact amount of the space, as it did not have any outline on the element. In the border’s case, this is not true. On an element, a border is added on the height and outside width of the element. Therefore, if there were 50-pixel wide along with a 2-pixel border, then it would take 54-pixels. The same image along with 2-pixel outline will take only 50-pixels width on the same page and the outline will display the images outside edge.</p>
<p class="blogtext"><strong>Outlines May or may not be Non-Rectangular </strong></p>
<p class="blogtext">Whenever you put up the border on the element, the browser will interpret the elements as if they were one of the giant rectangular boxes. If the box is split over many lines, the browser will just leave the edges open, as the box is not closed. It is as if a browser is seeing the border along with a wide screen, which is too wide to be measured. The wide screen is wide enough for the border to be continuous rectangle.<br />
In contrast, the edges are taken into consideration by the outline property. If the outlined element is spanned over several lines then the outline will close at the line’s end and again re-opens on the next line. If it were possible, then the outline would definitely stay fully connected and thus it creates a non-rectangular shape.<br />
The outline property must be seen and it must be compared with the border property.</p>
<p class="blogtext"><strong>Uses of the Outline Property</strong></p>
<p class="blogtext">Searching the items is the best use of the outline property. Most of the websites will do this using a background colour. However, the outline property can also be used and you need not worry about adding the extra spacing on the pages.<br />
Outline colour property will accept the term ‘invert’ that will make the outline colour the inverse colour of current background. This will allow you to highlight the elements on the dynamic WebPages even without the need to know what are the colours used.<br />
Around the active links, there would be some dotted lines and to remove them the outline property can be used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.html.co.uk/185/css-outline-styles-are-often-confusing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

