<?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"
	>

<channel>
	<title>Web Design Tutorials</title>
	<atom:link href="http://www.elegant-templates.com/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.elegant-templates.com/tutorials</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sun, 28 Sep 2008 10:03:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>CSS and Lists</title>
		<link>http://www.elegant-templates.com/tutorials/css-and-lists.html</link>
		<comments>http://www.elegant-templates.com/tutorials/css-and-lists.html#comments</comments>
		<pubDate>Wed, 27 Feb 2008 17:24:38 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.elegant-templates.com/tutorials/css-and-lists.html</guid>
		<description><![CDATA[CSS and HTML are a bit different in terms of lists. In CSS, there are only 2 types of lists as opposed to HTML, which has 3. CSS has numbered and bulleted types of lists and you can define the style of the bullets and numbers with CSS using list-style-type property.

Styling the List


This is used [...]]]></description>
			<content:encoded><![CDATA[<p>CSS and HTML are a bit different in terms of lists. In CSS, there are only 2 types of lists as opposed to HTML, which has 3. CSS has numbered and bulleted types of lists and you can define the style of the bullets and numbers with CSS using list-style-type property.</p>
</p>
<p><strong>Styling the List</strong></p>
</p>
<p><span id="more-17"></span></p>
<p>This is used to style the bullets and numbering in different ways as allowed by CSS. For example, to have a list with square style bullets, we use the following code.</p>
</p>
<p><strong>&lt;ul style=&#8221;list-style-type: square;&#8221;&gt;</strong></p>
<p><strong>&lt;li&gt;one&lt;/li&gt;</strong></p>
<p><strong>&lt;li&gt;two&lt;/li&gt;</strong></p>
<p><strong>&lt;li&gt;three&lt;/li&gt;</strong></p>
</p>
<p>the output is as follows</p>
</p>
<p><img src="http://aycu33.webshots.com/image/44952/2003248922277125705_rs.jpg" alt="" /></p>
</p>
<p><strong>Usage of an Image as a Bullet</strong></p>
</p>
<p>We can use an image as a bullet too, by making the necessary changes in the code. For example, to have an image as a bullet, we can use the following code.</p>
</p>
<p><strong>&lt;ul style=&#8221;list-style-image: url(image.gif);&#8221;&gt;</strong></p>
<p><strong>&lt;li&gt;one&lt;/li&gt;</strong></p>
<p><strong>&lt;li&gt;two&lt;/li&gt;</strong></p>
<p><strong>&lt;li&gt;three&lt;/li&gt;</strong></p>
</p>
<p><strong>Positioning of the Bullets</strong></p>
</p>
<p>CSS also provides a powerful feature of governing the placement of the bullets and how the text will be displayed around them. For instance, consider the following code segment and the associated output with it.</p>
</p>
<p><strong>&lt;ul style=&#8221;list-style-position: inside;&#8221;&gt;</strong></p>
<p><strong>&lt;li&gt;one&lt;/li&gt;</strong></p>
<p><strong>&lt;li&gt;two&lt;/li&gt;</strong></p>
<p><strong>&lt;li&gt;three&lt;/li&gt;</strong></p>
</p>
<p><img src="http://aycu17.webshots.com/image/46376/2003242643745736547_rs.jpg" alt="" /></p>
</p>
<p><strong>Combining it one the Go</strong></p>
</p>
<p>You can also combine all the tags present into one tag and use it for your styling. Consider the code below and its output.</p>
</p>
<p><strong>&lt;ol style=&#8221;list-style: alpha inside none;&#8221;&gt;</strong></p>
<p><strong>&lt;li&gt;one&lt;/li&gt;</strong></p>
<p><strong>&lt;li&gt;two&lt;/li&gt;</strong></p>
<p><strong>&lt;li&gt;three&lt;/li&gt;</strong></p>
</p>
<p><img src="http://aycu33.webshots.com/image/44952/2003298783792226130_rs.jpg" alt="" /></p>
</p>
<p>In this way, you can design your custom styled bullets and numbering using the powerful features of CSS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elegant-templates.com/tutorials/css-and-lists.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Backgrounds and CSS</title>
		<link>http://www.elegant-templates.com/tutorials/backgrounds-and-css.html</link>
		<comments>http://www.elegant-templates.com/tutorials/backgrounds-and-css.html#comments</comments>
		<pubDate>Wed, 20 Feb 2008 18:48:35 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.elegant-templates.com/tutorials/backgrounds-and-css.html</guid>
		<description><![CDATA[This tutorial deals with major aspects of background effects and CSS. We will cover
1)Colors
2)Images
3)Watermarking

Background Colors
&#160;
You can modify the background color of the whole document or any block-level element. The color can also be made to adjust with the background setting of the parent.
&#160;
Consider the code below and the output for clear understanding of the syntax [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0in">This tutorial deals with major aspects of background effects and CSS. We will cover</p>
<p style="margin-bottom: 0in"><strong>1)Colors</strong></p>
<p style="margin-bottom: 0in"><strong>2)Images</strong></p>
<p style="margin-bottom: 0in"><strong>3)Watermarking</strong></p>
<p style="margin-bottom: 0in"><span id="more-16"></span></p>
<p style="margin-bottom: 0in"><strong>Background Colors</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">You can modify the background color of the whole document or any block-level element. The color can also be made to adjust with the background setting of the parent.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">Consider the code below and the output for clear understanding of the syntax and usage.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&lt;p style=&#8221;background-color : Red&#8221;&gt;</p>
<p style="margin-bottom: 0in">This paragraph has a red background</p>
<p style="margin-bottom: 0in">&lt;/p&gt;</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu38.webshots.com/image/44637/2004329414729671246_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Background Images</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">You can also put an image as the background behind any element, and these images would be visible like a watermark also. Consider the code and output below</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&lt;p style=&#8221;background-image : url(backgr.jpg);&#8221;&gt;</p>
<p style="margin-bottom: 0in">This paragraph has a background image</p>
<p style="margin-bottom: 0in">&lt;/p&gt;</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"> <img src="http://aycu39.webshots.com/image/46358/2004359583246850083_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Placement of Background Images</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">We can easily decide the position of the images in the background of a particular element. This placing can be done using the background position tag which defines the x and y coordinates of the image in background. Consider the code below.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&lt;p style=&#8221;background-position : 250px 0px;background-image : url(backgr.jpg);&#8221;&gt;</p>
<p style="margin-bottom: 0in">This paragraph has a background image</p>
<p style="margin-bottom: 0in">&lt;/p&gt;</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu39.webshots.com/image/46358/2004313165734962863_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Creating a Watermark</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">Its very easy to create a Watermark in an page. There are 3 steps or attributes of CSS which are involved in it.</p>
<p style="margin-bottom: 0in">1)background image</p>
<p style="margin-bottom: 0in">2)background repeat</p>
<p style="margin-bottom: 0in">3)background attachment</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The background image is used to select an image to be displayed in your page, the background repeat displays it only once and the attachment is used to turn it into a bookmark.</p>
<p style="margin-bottom: 0in">The following code can be used to create a watermark image as shown</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&lt;style&gt;</p>
<p style="margin-bottom: 0in">&lt;!&#8211;</p>
<p style="margin-bottom: 0in">body{</p>
<p style="margin-bottom: 0in">background-position : 100px 100px;</p>
<p style="margin-bottom: 0in">background-image : url(backgr.jpg);</p>
<p style="margin-bottom: 0in">background-repeat : no-repeat;</p>
<p style="margin-bottom: 0in">background-attachment : fixed;</p>
<p style="margin-bottom: 0in">}</p>
<p style="margin-bottom: 0in">//&#8211;&gt;</p>
<p style="margin-bottom: 0in">&lt;/style&gt;</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu04.webshots.com/image/46603/2002796747851240106_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elegant-templates.com/tutorials/backgrounds-and-css.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>The CSS Box Model</title>
		<link>http://www.elegant-templates.com/tutorials/the-css-box-model.html</link>
		<comments>http://www.elegant-templates.com/tutorials/the-css-box-model.html#comments</comments>
		<pubDate>Tue, 19 Feb 2008 17:58:04 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.elegant-templates.com/tutorials/the-css-box-model.html</guid>
		<description><![CDATA[The CSS box model is the one which model which is implemented while rendering images in any browser. It takes care of the boxes that are formed around the content in any Webpage. Every element under consideration is as a box, and this factor does not depend upon the actual shape of the object. It [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0in">The <strong>CSS box model</strong> is the one which model which is implemented while rendering images in any browser. It takes care of the boxes that are formed around the content in any Webpage. Every element under consideration is as a box, and this factor does not depend upon the actual shape of the object. It might be an ellipse, but would still be represented in a box.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">Parts of the CSS box model</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">There are four parts</p>
<p style="margin-bottom: 0in"><strong>1)Margin</strong></p>
<p style="margin-bottom: 0in"><strong>2)Border</strong></p>
<p style="margin-bottom: 0in"><strong>3)Padding</strong></p>
<p style="margin-bottom: 0in"><strong>4)Content</strong></p>
<p style="margin-bottom: 0in"><span id="more-15"></span></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Margin</strong> is the periphery of the box. It is transparent and is projected like a sapce between various elements on the page. Margins can intermingle with one another, in such a way that one&#8217;s lower margin becomes the upper margin of another element, or right of one becomes left of another.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">An example of the margin code gives the following output.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>&lt;p style=margin : 2em;&#8221;&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>This paragraph has a 2em margin on all sides</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;/p&gt; </strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu13.webshots.com/image/42372/2003266038680344835_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Border</strong> follows the margin, and it can be given a color or can be kept as transparent. It can be removed altogether, and when it is removed, it mixes with the padding of the box of the element.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">An example of Border code has the following output.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p><strong>&lt;p style=border : 2em solid#c00;&#8221;&gt;</strong></p>
<p><strong>This paragraph has a 2em solid red border</strong></p>
<p><strong>&lt;/p&gt; </strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu39.webshots.com/image/45838/2003246203372520542_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Padding</strong> is the space which lies between the content of the box and its respective border. It follows the same color as the background of the box, and if it is set to 0, it becomes same as the content border.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">An example of Padding code is given</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>&lt;p style=padding : 2em;&#8221;&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>This paragraph has a 2em top padding.</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;/p&gt; </strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu09.webshots.com/image/43288/2003232316047372350_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Content</strong> is the basic element which is displayed inside the box. This can be anything which is present inside. The content has two elements, width and height.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The <strong>width</strong>, is the basic width of the element inside the box. The default value is 500px which can be modified by the code below.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&lt;p style=&#8221;width : 700px;&#8221;&gt;</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The<strong> height</strong>, is the height of the box, and the default value it takes is again 500px. The code for modification is</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&lt;p style=&#8221;height : 700px;&#8221;&gt;</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">A sample code gives the following output</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>&lt;p style=&#8221;border : 2em solid #c00;width : 100px;height : 120px&#8221;&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>This is a modified block size with different height and width from default.</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;/p&gt;</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu39.webshots.com/image/45838/2003216824683400178_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The box model has few other considerations as well, which are the elements which influence the box style.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Block Level Elements</strong> are elements which create blocks or groups of text in a page. They can be paragraphs, backquotes, tables etc. They have certain directionality and can contain data, text and inline elements. They create boxes within the document.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Inline Elements</strong> are found in the text of HTML, and influence the textual properties. They can be strong and abbr tags, etc. They do not change the flow of the document, and influence the inline text.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">This lays the foundation of the basic model that is followed by every document. However, the implementation of every above tag is browser specific, and can vary from browser to browser because of different styling.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elegant-templates.com/tutorials/the-css-box-model.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Basic HTML Tags, the ones you cant do without!</title>
		<link>http://www.elegant-templates.com/tutorials/basic-html-tags-the-ones-you-cant-do-without.html</link>
		<comments>http://www.elegant-templates.com/tutorials/basic-html-tags-the-ones-you-cant-do-without.html#comments</comments>
		<pubDate>Sun, 17 Feb 2008 08:49:33 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.elegant-templates.com/tutorials/basic-html-tags-the-ones-you-cant-do-without.html</guid>
		<description><![CDATA[Today, we will be discussing the most basic tags that are required by ever web-page for proper compilation in HTML.
The HTML Tag
&#60;html&#62; is the topmost tag in any HTML page because this is the tag which tells the browser that this page will be treated as an HTML page, and the whole formatting would be [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0in">Today, we will be discussing the most basic tags that are required by ever web-page for proper compilation in HTML.</p>
<p style="margin-bottom: 0in"><strong>The HTML Tag</strong></p>
<p style="margin-bottom: 0in">&lt;html&gt; is the topmost tag in any HTML page because this is the tag which tells the browser that this page will be treated as an HTML page, and the whole formatting would be done based on the HTML text. It is a paired tag, and it requires a &lt;/html&gt; to close and to tell the browser that all HTML data has finished after it. It is essentially the last tag of an HTML page.</p>
<p style="margin-bottom: 0in"><span id="more-13"></span></p>
<p style="margin-bottom: 0in"><strong>The Head Tag</strong></p>
<p style="margin-bottom: 0in">The &lt;head&gt; tag is used to display the head portion of the page. It may or may not be displayed to the user, depending on the browser settings. It houses many other tags like the heading tags from h1 to h6, &lt;script&gt; tag which tells the browser the presence of a script, &lt;style&gt; which is used for stylesheets and &lt;title&gt; which is the title of the web-page, and is displayed at the top most bar of the browser.</p>
<p style="margin-bottom: 0in">The output of this code is show below</p>
<p style="margin-bottom: 0in"><strong>&lt;html&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;head&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;title&gt;This is the Title of the page&lt;/title&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;/head&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;/html&gt;</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu14.webshots.com/image/43453/2006056988260276947_rs.jpg" /></p>
<p style="margin-bottom: 0in"><strong>The Body Tag</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The &lt;body&gt; tag encloses all the HTML data and information and the major portion of the Webpage. With the &lt;body&gt; tag, you can make changes in the color of the background, text color, link color, active and visited both. This tag is where all the activity takes place.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The output of code is shown below</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>&lt;body&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>The body text goes here.</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;/body&gt;</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu26.webshots.com/image/45585/2006032604868141087_rs.jpg" /></p>
<p style="margin-bottom: 0in"><strong>A complete Web page, with body, title, head, and HTML tags can be shown as below.</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><img src="http://aycu38.webshots.com/image/43557/2006057682655653369_rs.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elegant-templates.com/tutorials/basic-html-tags-the-ones-you-cant-do-without.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Document Spacing and Defining</title>
		<link>http://www.elegant-templates.com/tutorials/document-spacing-and-defining.html</link>
		<comments>http://www.elegant-templates.com/tutorials/document-spacing-and-defining.html#comments</comments>
		<pubDate>Sat, 16 Feb 2008 18:09:38 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.elegant-templates.com/tutorials/document-spacing-and-defining.html</guid>
		<description><![CDATA[Now in this tutorial, we are going to discuss about HTML tags which define the page, like blanks, quotes and paragraphs.
&#160;
The Paragraph Tag
&#160;
The paragraph tag, given by &#60;p&#62; , is used for making paragraphs in your text. Its an open tag, which means that the &#60;/p&#62; tag is not required. They basically indicate where a [...]]]></description>
			<content:encoded><![CDATA[<p>Now in this tutorial, we are going to discuss about HTML tags which define the page, like blanks, quotes and paragraphs.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>The Paragraph Tag</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The paragraph tag, given by &lt;p&gt; , is used for making paragraphs in your text. Its an open tag, which means that the &lt;/p&gt; tag is not required. They basically indicate where a new paragraph starts by inserting a blank between successive text. Consecutive &lt;p&gt; tags are ignored by the browser, and each &lt;p&gt; pair should have some text between them for actual count.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><span id="more-12"></span><strong>&lt;p&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>This is a test on the paragraph tags in HTML</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;p&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>The tags are working perfectly.</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The above code gives the following output.</p>
<p style="margin-bottom: 0in"><img src="http://aycu37.webshots.com/image/44156/2000485555992547106_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>The Break Line Tag</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The break line tag, &lt;br&gt;, is used to start afresh from the next line. This tag is also unpaired , it does not require &lt;/br&gt; tag. A couple of &lt;br&gt; can be used to insert blank lines into the Webpage.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>This is a test&lt;br&gt;Its working fine</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The above code gives the following output.</p>
<p style="margin-bottom: 0in"><img src="http://aycu23.webshots.com/image/43022/2000466651428695594_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>The Quotations Tag</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The &lt;blockquote&gt; is used as the quotation tag, and it is paired, it requires a closing tag. It indents the quotes a few spaces and a couple of these indent them in summation, as per the browser setting.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">The sample code below gives the following output</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>&lt;blockquote&gt;This is a test&lt;/blockquote&gt;</strong></p>
<p style="margin-bottom: 0in"><strong>&lt;blockquote&gt;&lt;blockquote&gt;Its working fine&lt;/blockquote&gt;&lt;/blockquote&gt;</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"> <img src="http://aycu03.webshots.com/image/43002/2000438675884196947_rs.jpg" /></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">These tags will let you carry out the basic document defining tasks as demonstrated very easily.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elegant-templates.com/tutorials/document-spacing-and-defining.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Creating headings and playing with Text</title>
		<link>http://www.elegant-templates.com/tutorials/creating-headings-and-playing-with-text.html</link>
		<comments>http://www.elegant-templates.com/tutorials/creating-headings-and-playing-with-text.html#comments</comments>
		<pubDate>Sat, 16 Feb 2008 03:36:18 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.elegant-templates.com/tutorials/creating-headings-and-playing-with-text.html</guid>
		<description><![CDATA[Now that you have successfully started with Notepad and HTML, lets move on to headings and Text stuff in your site.
&#160;
We can divide the whole Website into headings, and there are a total of 6, starting from h1 to h6. The main heading, which is also the largest, is h1, and all others are subheadings.
&#160;
Text [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0in">Now that you have successfully started with Notepad and HTML, lets move on to headings and Text stuff in your site.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">We can divide the whole Website into headings, and there are a total of 6, starting from h1 to h6. The main heading, which is also the largest, is h1, and all others are subheadings.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">Text can be modified using Bold and Italics effects as per your requirement. Usually, these are used to divide and make the Web document presentable, and its used to highlight important stuff.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>HEADINGS</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">There are 6 headings in total, and they can be coded in the following form as shown.</p>
<p style="margin-bottom: 0in"><span id="more-11"></span></p>
<p style="margin-bottom: 0in"><img src="http://aycu08.webshots.com/image/45447/2004546022733492568_rs.jpg" /></p>
<p style="margin-bottom: 0in">After saving it as an HTML file, it would give the output in the Web-Browser as displayed.</p>
<p style="margin-bottom: 0in"><img src="http://aycu08.webshots.com/image/45447/2004540396843473880_rs.jpg" /></p>
<p style="margin-bottom: 0in">Headings automatically include paragraph and break tags, which makes them easy to use. However, it is advisable to use them in order, and as per you browser interprets them.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in"><strong>Bold and Italic effects on Text</strong></p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">Bold tags are used to make your text as bold. You can use &lt;strong&gt; and &lt;/strong&gt; tags for making the text bold. The effect of the following statement is shown below</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&lt;strong&gt;Bold Text&lt;/strong&gt;</p>
<p style="margin-bottom: 0in"><img src="http://aycu17.webshots.com/image/41976/2000470959731227432_rs.jpg" /></p>
<p style="margin-bottom: 0in">For italicizing the text, you can use &lt;em&gt; &lt;/em&gt; tags, and the effect of the tag is shown,</p>
<p style="margin-bottom: 0in">&nbsp;</p>
<p style="margin-bottom: 0in">&lt;em&gt;Italicized Text&lt;/em&gt;</p>
<p style="margin-bottom: 0in"><img src="http://aycu09.webshots.com/image/44288/2003685696125302099_rs.jpg" /></p>
<p style="margin-bottom: 0in">The tags have been combined to generate a Bold + Italic output in above.</p>
<p style="margin-bottom: 0in">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elegant-templates.com/tutorials/creating-headings-and-playing-with-text.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Using Notepad for your HTML Needs</title>
		<link>http://www.elegant-templates.com/tutorials/using-notepad-for-your-html-needs-2.html</link>
		<comments>http://www.elegant-templates.com/tutorials/using-notepad-for-your-html-needs-2.html#comments</comments>
		<pubDate>Fri, 15 Feb 2008 18:39:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.elegant-templates.com/tutorials/using-notepad-for-your-html-needs-2.html</guid>
		<description><![CDATA[So you want to get started with Website designing, and are confused which all software you would require?! Well initially, you can start with the inbuilt Windows editor which can easily help you out with the HTML, because that is what you would be using for most of your initial development. On top of that, [...]]]></description>
			<content:encoded><![CDATA[<p>So you want to get started with Website designing, and are confused which all software you would require?! Well initially, you can start with the inbuilt Windows editor which can easily help you out with the HTML, because that is what you would be using for most of your initial development. On top of that, its free and easy to learn!</p>
<p>Lets get started with the basics of HTML with Notepad</p>
<p><strong>STEP 1</strong></p>
<p>Go to <strong>Start</strong> &gt; <strong>Programs</strong> &gt; <strong>Accessories</strong> &gt; <strong>Notepad</strong>, to start the application.</p>
<p><img src="http://aycu28.webshots.com/image/42747/2004341725941446605_rs.jpg" title="Start up" alt="Start up" /></p>
<p><span id="more-8"></span> An alternate way to start the Notepad is</p>
<p><strong>Start</strong> &gt; <strong>Run</strong> &gt; <strong>Notepad</strong></p>
<p>When Notepad initially loads, it should look like this</p>
<p><a href="http://www.elegant-templates.com/tutorials/wp-content/uploads/2008/02/2005690781858196960_rs.jpg" title="2005690781858196960_rs.jpg"><img src="http://www.elegant-templates.com/tutorials/wp-content/uploads/2008/02/2005690781858196960_rs.jpg" alt="2005690781858196960_rs.jpg" /></a></p>
<p><strong>STEP 2</strong></p>
<p>After notepad has started, you need to give your HTML code into the window. The notepad can be used to create complex and simple types of pages, and it would be very easy once u learn the language.</p>
<p>A few drawbacks of Notepad are clearly visible here. It does not support tag completion and verification like other HTML editors. But then, you can&#8217;t expect everything from a free editor.</p>
<p><strong>STEP 3</strong></p>
<p>The final step requires you to save your work. First-timers usually mess up this step, and land up naming a file as .htm.txt format, which is essentially a text file. What you have to do is, save the file with an HTML extension. After clicking on Save As, and selecting the location for saving the file, you should select All Files from the drop down menu, and should name the file as xxx.html</p>
<p>Here is how it should look&#8230;</p>
<p><a href="http://www.elegant-templates.com/tutorials/wp-content/uploads/2008/02/image2.jpg" title="image2.jpg"><img src="http://www.elegant-templates.com/tutorials/wp-content/uploads/2008/02/image2.jpg" alt="image2.jpg" /></a></p>
<p>That should be good enough to get you started for the time, so go get it tiger!</p>
<p><em>This tutorial is the property of http://www.Elegant-Templates.com<br />
Copying and publishing any article from our site is strictly NOT allowed</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elegant-templates.com/tutorials/using-notepad-for-your-html-needs-2.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>A Simple Web Design Tutorial - Beginners Guide</title>
		<link>http://www.elegant-templates.com/tutorials/a-simple-web-design-tutorial-beginners-guide.html</link>
		<comments>http://www.elegant-templates.com/tutorials/a-simple-web-design-tutorial-beginners-guide.html#comments</comments>
		<pubDate>Fri, 16 Nov 2007 16:40:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.elegant-templates.com/tutorials/?p=5</guid>
		<description><![CDATA[Web design can be an incredibly daunting project if you are new to the idea of the Internet. If you are interested in creating your own website but are not sure where to begin, here is a brief tutorial on getting started with website design and development.
1- Learn a little bit of HTML – There [...]]]></description>
			<content:encoded><![CDATA[<p>Web design can be an incredibly daunting project if you are new to the idea of the Internet. If you are interested in creating your own website but are not sure where to begin, here is a brief tutorial on getting started with website design and development.</p>
<p>1- Learn a little bit of HTML – There are plenty of WYSIWYG or &#8220;What You See Is What You Get&#8221; HTML editors, but there are a lot more capabilities out there that you will only discover if you take the plunge and learn some HTML on your own.</p>
<p>- Learning HTML can be one of the greatest investments that you ever make when it comes to designing and developing a website. There are many great places to learn HTML, including HTML Goodies and HTML Tutorial</p>
<p>- Learning CSS is another important part of designing and developing a website, as they can assist tremendously when it comes to controlling your website&#8217;s layout, images and colors. The w3schools website I mentioned before is a great place for learning CSS as well.</p>
<p><span id="more-5"></span>2. Try to stick to a single template for your website design. Use a website template to create your first website. You can either buy a free commercial template or have one designed for you. There are also plenty of opportunities for finding free website templates that are easy to customize.</p>
<p>- Table-based website design templates are great for anyone who is still learning how to work with HTML, as all the formatting is pretty stable and cannot easily be messed with.</p>
<p>- Utilize open-source content management solutions to create your website. Wordpress, located at WordPress.com » Get a Free Blog Here and Joomla, located at Joomla! are both great choices for website design and management.</p>
<p>- You do not need an understanding of HTML or CSS to create a website using either of these utilities, but it does pay off to know them anyway. These content management solutions have simple admin backend utilities which make it simple to add and remove content, and to completely customize every part of the website. So if you are looking for a fast and simple way to get a website up, this may be the process for you.</p>
<p>Still, learning HTML and CSS are an important part of making a website function properly, so once you have a basic website up, start brushing up on your web design skills.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.elegant-templates.com/tutorials/a-simple-web-design-tutorial-beginners-guide.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
