<?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>Mukesh Chapagain&#039;s Blog &#187; HTML</title>
	<atom:link href="http://blog.chapagain.com.np/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.chapagain.com.np</link>
	<description>PHP Magento jQuery SQL Wordpress Joomla Programming &#38; Tutorial</description>
	<lastBuildDate>Tue, 07 Feb 2012 00:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Javascript: How to Submit form and Change form action?</title>
		<link>http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/</link>
		<comments>http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 17:59:53 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=1539</guid>
		<description><![CDATA[This article will show you how to submit form and change form action using javascript. This is a very simple trick but it&#8217;s very useful and frequently used. Submit Form using Javascript HTML form Javascript function Change form action using Javascript HTML form Javascript function Full Source Code Hope it helps. Thanks. Copyright &#169; 2011 [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-add-remove-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Add Remove HTML elements'>Javascript: Add Remove HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-show-hide-textbox-text-on-focus/' rel='bookmark' title='Permanent Link: Javascript: Show Hide textbox text on focus'>Javascript: Show Hide textbox text on focus</a></li>
<li><a href='http://blog.chapagain.com.np/print_r-in-javascript/' rel='bookmark' title='Permanent Link: print_r in Javascript'>print_r in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-showhide-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Show/Hide HTML elements'>Javascript: Show/Hide HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-change-or-reorder-top-links/' rel='bookmark' title='Permanent Link: Magento: How to change or reorder top links?'>Magento: How to change or reorder top links?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This article will show you how to submit form and change form action using javascript. This is a very simple trick but it&#8217;s very useful and frequently used.</p>
<p><strong>Submit Form using Javascript</strong></p>
<p><span id="more-1539"></span></p>
<p>HTML form</p>
<pre class="brush: xml; title: ; notranslate">
&lt;form name=&quot;myForm&quot; action=&quot;http://google.com&quot; method=&quot;get&quot;&gt;
	Search: &lt;input type=&quot;text&quot; name=&quot;q&quot; /&gt;
	&lt;button onclick=&quot;javascript: submitForm()&quot;&gt;Search&lt;/button&gt;
&lt;/form&gt;
</pre>
<p>Javascript function</p>
<pre class="brush: jscript; title: ; notranslate">
function submitForm()
{
  document.myForm.submit();
}
</pre>
<p><strong>Change form action using Javascript</strong></p>
<p>HTML form</p>
<pre class="brush: xml; title: ; notranslate">
&lt;form name=&quot;newForm&quot; method=&quot;get&quot; onSubmit=&quot;formAction(this)&quot;&gt;
	Search: &lt;input type=&quot;text&quot; name=&quot;q&quot; /&gt;
	&lt;input type=&quot;submit&quot; name=&quot;search&quot; value=&quot;Search&quot;&gt;
&lt;/form&gt;
</pre>
<p>Javascript function</p>
<pre class="brush: jscript; title: ; notranslate">
function formAction()
{
  document.newForm.action = &quot;http://google.com&quot;;
}
</pre>
<p><strong>Full Source Code</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
	&lt;head&gt;
		&lt;title&gt;Javascript and Forms&lt;/title&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
			function submitForm()
			{
			  document.myForm.submit();
			}

			function formAction()
			{
			  document.newForm.action = &quot;http://google.com&quot;;
			}
		&lt;/script&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;p&gt;
			Example 1: Submitting form through Javascript
			&lt;form name=&quot;myForm&quot; action=&quot;http://google.com&quot; method=&quot;get&quot;&gt;
				Search: &lt;input type=&quot;text&quot; name=&quot;q&quot; /&gt;
				&lt;button onclick=&quot;javascript: submitForm()&quot;&gt;Search&lt;/button&gt;
			&lt;/form&gt;
		&lt;/p&gt;

		&lt;p&gt;
			Example 2: Changing form action through Javascript
			&lt;form name=&quot;newForm&quot; method=&quot;get&quot; onSubmit=&quot;formAction(this)&quot;&gt;
				Search: &lt;input type=&quot;text&quot; name=&quot;q&quot; /&gt;
				&lt;input type=&quot;submit&quot; name=&quot;search&quot; value=&quot;Search&quot;&gt;
			&lt;/form&gt;
		&lt;/p&gt;
	&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Hope it helps. Thanks.</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=1539&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-add-remove-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Add Remove HTML elements'>Javascript: Add Remove HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-show-hide-textbox-text-on-focus/' rel='bookmark' title='Permanent Link: Javascript: Show Hide textbox text on focus'>Javascript: Show Hide textbox text on focus</a></li>
<li><a href='http://blog.chapagain.com.np/print_r-in-javascript/' rel='bookmark' title='Permanent Link: print_r in Javascript'>print_r in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-showhide-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Show/Hide HTML elements'>Javascript: Show/Hide HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-change-or-reorder-top-links/' rel='bookmark' title='Permanent Link: Magento: How to change or reorder top links?'>Magento: How to change or reorder top links?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Show/Hide HTML elements</title>
		<link>http://blog.chapagain.com.np/javascript-showhide-html-elements/</link>
		<comments>http://blog.chapagain.com.np/javascript-showhide-html-elements/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 12:26:51 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=277</guid>
		<description><![CDATA[Here, I will be demonstrating on showing or hiding a div when a link is clicked. I have done this with Javascript and CSS. I have called showHideDiv() Js function when the link is clicked. The display of the div where content is present, is visible or hidden on each click. For this, CSS styling [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-add-remove-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Add Remove HTML elements'>Javascript: Add Remove HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-show-hide-textbox-text-on-focus/' rel='bookmark' title='Permanent Link: Javascript: Show Hide textbox text on focus'>Javascript: Show Hide textbox text on focus</a></li>
<li><a href='http://blog.chapagain.com.np/print_r-in-javascript/' rel='bookmark' title='Permanent Link: print_r in Javascript'>print_r in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/' rel='bookmark' title='Permanent Link: Javascript: How to Submit form and Change form action?'>Javascript: How to Submit form and Change form action?</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Here, I will be demonstrating on showing or hiding a div when a link is clicked. I have done this with Javascript and CSS.</p>
<p>I have called showHideDiv() Js function when the link is clicked. The display of the div where content is present, is visible or hidden on each click. For this, CSS styling is used (display: none).</p>
<p><span id="more-277"></span></p>
<p>The code follows:</p>
<pre class="brush: jscript; title: ; notranslate">

&lt;div&gt;
	&lt;a onclick=&quot;showHideDiv()&quot; style=&quot;cursor:pointer&quot;&gt;Show / Hide&lt;/a&gt;
	&lt;div id=&quot;addTag&quot; style=&quot;display:none&quot;&gt;This is a test.&lt;/div&gt;
&lt;/div&gt;

&lt;script type=&quot;text/javascript&quot; language=&quot;javascript&quot;&gt;
	function showHideDiv()
	{
		if(document.getElementById('addTag').style.display == &quot;none&quot;) {
			document.getElementById('addTag').style.display = &quot;&quot;;
		}
		else {
			document.getElementById('addTag').style.display = &quot;none&quot;;
		}
	}
&lt;/script&gt;
</pre>
<p>Try, Implement and Enjoy!</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=277&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-add-remove-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Add Remove HTML elements'>Javascript: Add Remove HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-show-hide-textbox-text-on-focus/' rel='bookmark' title='Permanent Link: Javascript: Show Hide textbox text on focus'>Javascript: Show Hide textbox text on focus</a></li>
<li><a href='http://blog.chapagain.com.np/print_r-in-javascript/' rel='bookmark' title='Permanent Link: print_r in Javascript'>print_r in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/' rel='bookmark' title='Permanent Link: Javascript: How to Submit form and Change form action?'>Javascript: How to Submit form and Change form action?</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/javascript-showhide-html-elements/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Javascript: Add Remove HTML elements</title>
		<link>http://blog.chapagain.com.np/javascript-add-remove-html-elements/</link>
		<comments>http://blog.chapagain.com.np/javascript-add-remove-html-elements/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 13:53:05 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=244</guid>
		<description><![CDATA[You can add html elements dynamically with Javascript. In this article, I will show you how to do so. I have created two Javascript functions. One for creating html elements and the other for removing them. In my html elements, I have created &#8216;li&#8217; and &#8216;strong&#8217; elements inside &#8216;div&#8217;. The div id is &#8216;summary&#8217;. I [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-showhide-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Show/Hide HTML elements'>Javascript: Show/Hide HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/print_r-in-javascript/' rel='bookmark' title='Permanent Link: print_r in Javascript'>print_r in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/' rel='bookmark' title='Permanent Link: Javascript: How to Submit form and Change form action?'>Javascript: How to Submit form and Change form action?</a></li>
<li><a href='http://blog.chapagain.com.np/website-statistic-user-information-in-javascript/' rel='bookmark' title='Permanent Link: Website statistic (User Information) in Javascript'>Website statistic (User Information) in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/go-back-link-in-javascript/' rel='bookmark' title='Permanent Link: Go back link in Javascript'>Go back link in Javascript</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>You can add html elements dynamically with Javascript. In this article, I will show you how to do so. I have created two Javascript functions. One for creating html elements and the other for removing them.</p>
<p>In my html elements, I have created &#8216;li&#8217; and &#8216;strong&#8217; elements inside &#8216;div&#8217;. The div id is &#8216;summary&#8217;. I have written comment in the code so that it would be easy to understand.</p>
<p><span id="more-244"></span></p>
<p>Javascript function to create html elements:-</p>
<pre class="brush: jscript; title: ; notranslate">
function createSummary(title,content) {
	// get div id
	var summaryOptions = document.getElementById('summary');

	// create new &lt;li&gt;
	var newLi = document.createElement('li');
	var liIdName = title;
	// set &lt;li&gt; attribute id
	newLi.setAttribute('id',liIdName);

	// create new element &lt;strong&gt;
	var newStrong = document.createElement('strong');
	var strongIdName = title+&quot; strong&quot;;
	// assign id to &lt;strong&gt;
	newStrong.setAttribute('id',strongIdName);

	// adding parameter 'title' value inside &lt;strong&gt;
	newStrong.innerHTML = title;
	// adding &lt;strong&gt; inside div
	summaryOptions.appendChild(newStrong);

	// adding parameter 'content' value inside &lt;li&gt;
	newLi.innerHTML = content;
	// adding &lt;li&gt; inside div
	summaryOptions.appendChild(newLi);
}
</pre>
<p>Javascript function to remove html elements:-</p>
<pre class="brush: jscript; title: ; notranslate">
function removeSummary(title) {
	var summaryOptions = document.getElementById('summary');
	var childLi = document.getElementById(title);
	var childStrong = document.getElementById(title+&quot; strong&quot;);

	// remove &lt;li&gt;
	if(childLi) {
	summaryOptions.removeChild(childLi);
	}

	// remove strong &lt;strong&gt;
	if(childStrong) {
	summaryOptions.removeChild(childStrong);
	}
}
</pre>
<p>Full code is as under:-</p>
<pre class="brush: jscript; title: ; notranslate">

&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Test&lt;/title&gt;
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;
function createSummary(title,content) {
	// get div id
	var summaryOptions = document.getElementById('summary');

	// create new &lt;li&gt;
	var newLi = document.createElement('li');
	var liIdName = title;
	// set &lt;li&gt; attribute id
	newLi.setAttribute('id',liIdName);

	// create new element &lt;strong&gt;
	var newStrong = document.createElement('strong');
	var strongIdName = title+&quot; strong&quot;;
	// assign id to &lt;strong&gt;
	newStrong.setAttribute('id',strongIdName);

	// adding parameter 'title' value inside &lt;strong&gt;
	newStrong.innerHTML = title;
	// adding &lt;strong&gt; inside div
	summaryOptions.appendChild(newStrong);

	// adding parameter 'content' value inside &lt;li&gt;
	newLi.innerHTML = content;
	// adding &lt;li&gt; inside div
	summaryOptions.appendChild(newLi);
}

function removeSummary(title) {
	var summaryOptions = document.getElementById('summary');
	var childLi = document.getElementById(title);
	var childStrong = document.getElementById(title+&quot; strong&quot;);

	// remove &lt;li&gt;
	if(childLi) {
		summaryOptions.removeChild(childLi);
	}

	// remove &lt;strong&gt;
	if(childStrong) {
		summaryOptions.removeChild(childStrong);
	}
}
&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;

&lt;input type=&quot;button&quot; value=&quot;Show&quot; onclick=&quot;createSummary('This is title','This is content.')&quot; /&gt;
&lt;input type=&quot;button&quot; value=&quot;Remove&quot; onclick=&quot;removeSummary('This is title')&quot; /&gt;
&lt;div id=&quot;summary&quot; style=&quot;border:1px solid #CCCCCC; width:400px; &quot;&gt;&amp;amp;nbsp;&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=244&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/javascript-showhide-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Show/Hide HTML elements'>Javascript: Show/Hide HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/print_r-in-javascript/' rel='bookmark' title='Permanent Link: print_r in Javascript'>print_r in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-how-to-submit-form-and-change-form-action/' rel='bookmark' title='Permanent Link: Javascript: How to Submit form and Change form action?'>Javascript: How to Submit form and Change form action?</a></li>
<li><a href='http://blog.chapagain.com.np/website-statistic-user-information-in-javascript/' rel='bookmark' title='Permanent Link: Website statistic (User Information) in Javascript'>Website statistic (User Information) in Javascript</a></li>
<li><a href='http://blog.chapagain.com.np/go-back-link-in-javascript/' rel='bookmark' title='Permanent Link: Go back link in Javascript'>Go back link in Javascript</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/javascript-add-remove-html-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the source code and modify/parse a website?</title>
		<link>http://blog.chapagain.com.np/how-to-change-the-source-code-and-modifyparse-a-website/</link>
		<comments>http://blog.chapagain.com.np/how-to-change-the-source-code-and-modifyparse-a-website/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 07:45:48 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=77</guid>
		<description><![CDATA[Earlier I had written an article on How to get(view) html source code of a website . I had created an application and that would grab the html code of any website. In this article, I will be writing on how you can modify the looks of a website by changing the html source code [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
<li><a href='http://blog.chapagain.com.np/php-parse-unparse-string-array/' rel='bookmark' title='Permanent Link: PHP: Parse Unparse String Array'>PHP: Parse Unparse String Array</a></li>
<li><a href='http://blog.chapagain.com.np/php-source-code-encoding-with-ioncube-php-encoder/' rel='bookmark' title='Permanent Link: PHP source code encoding with ionCube PHP Encoder'>PHP source code encoding with ionCube PHP Encoder</a></li>
<li><a href='http://blog.chapagain.com.np/php-read-write-csv/' rel='bookmark' title='Permanent Link: PHP: Read Write CSV'>PHP: Read Write CSV</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-how-to-replace-string-div-content-and-image-src/' rel='bookmark' title='Permanent Link: jQuery: How to replace string, div content and image src?'>jQuery: How to replace string, div content and image src?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Earlier I had written an article on <a title="How to get html source code of a website" href="http://blog.chapagain.com.np/index.php/2008/07/02/how-to-get-html-source-code-of-a-website/" target="_blank">How to get(view) html source code of a website</a> . I had created an application and that would grab the html code of any website. In this article, I will be writing on how you can modify the looks of a website by changing the html source code after you grab it.</p>
<p>At first the html source code getting part. I have commented in the code for better understanding.</p>
<p><span id="more-77"></span></p>
<pre class="brush: php; title: ; notranslate">
// storing the domain name posted in a variable
$domain = $_POST['domain'];

// fopen(string filename, &quot;r&quot;) opens for reading only; place the file pointer at the beginning of the file.
$handle = fopen(&quot;http://$domain&quot;,&quot;r&quot;);

$contents = '';

// feof() Tests for end-of-file on a file pointer
// Returns TRUE if the file pointer is at EOF or an error occurs (including socket timeout); otherwise returns FALSE.
while (!feof($handle)) {

// string fread ( resource handle, int length )
// fread() reads up to length bytes from the file pointer referenced by handle. Reading stops when up to length bytes have been read, EOF (end of file) is reached
$contents .= fread($handle, 8192);
}
//var_dump($contents);

fclose($handle);
</pre>
<p>Now, the modification in the source code part. I have used ereg_replace() function for the modification.</p>
<pre class="brush: php; title: ; notranslate">
// You have the html source code in the variable $code
$code = $_POST['code'];

// $present consits of the text present in the html source code that is to be replaced
$present = $_POST['present'];

// $replace consits of the text that you are going to replace $present with
$replace = $_POST['replace'];

// string ereg_replace ( string pattern, string replacement, string string )
// This function scans string for matches to pattern, then replaces the matched text with replacement.
// The modified string is returned. (Which may mean that the original string is returned if there are no matches to be replaced.)
$code = ereg_replace($present, $replace , $code);

// string stripslashes ( string str )
// Returns a string with backslashes stripped off. (\' becomes ' and so on.) Double backslashes (\\) are made into a single backslash (\).
// This is useful if you are using slashes in $present or in $replace
echo stripslashes($code);

exit;
</pre>
<p><a title="Download" href="http://chapagain.googlecode.com/files/html%20source%20code%20viewer.zip">Download</a> | <a title="View Demo" href="http://bond007.site90.net/change.php" target="_blank">View Demo</a></p>
<p>Thank You</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=77&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
<li><a href='http://blog.chapagain.com.np/php-parse-unparse-string-array/' rel='bookmark' title='Permanent Link: PHP: Parse Unparse String Array'>PHP: Parse Unparse String Array</a></li>
<li><a href='http://blog.chapagain.com.np/php-source-code-encoding-with-ioncube-php-encoder/' rel='bookmark' title='Permanent Link: PHP source code encoding with ionCube PHP Encoder'>PHP source code encoding with ionCube PHP Encoder</a></li>
<li><a href='http://blog.chapagain.com.np/php-read-write-csv/' rel='bookmark' title='Permanent Link: PHP: Read Write CSV'>PHP: Read Write CSV</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-how-to-replace-string-div-content-and-image-src/' rel='bookmark' title='Permanent Link: jQuery: How to replace string, div content and image src?'>jQuery: How to replace string, div content and image src?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/how-to-change-the-source-code-and-modifyparse-a-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to get(view) html source code of a website</title>
		<link>http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/</link>
		<comments>http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 12:49:52 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=65</guid>
		<description><![CDATA[In this article, I will be illustrating about getting html source code of any website. I have done this in PHP. I created an html form for submitting the website url. After the url is submitted, the PHP code does all the magic to display full html source code of that particular website. The source [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/how-to-change-the-source-code-and-modifyparse-a-website/' rel='bookmark' title='Permanent Link: How to change the source code and modify/parse a website?'>How to change the source code and modify/parse a website?</a></li>
<li><a href='http://blog.chapagain.com.np/php-read-write-csv/' rel='bookmark' title='Permanent Link: PHP: Read Write CSV'>PHP: Read Write CSV</a></li>
<li><a href='http://blog.chapagain.com.np/php-source-code-encoding-with-ioncube-php-encoder/' rel='bookmark' title='Permanent Link: PHP source code encoding with ionCube PHP Encoder'>PHP source code encoding with ionCube PHP Encoder</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-add-remove-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Add Remove HTML elements'>Javascript: Add Remove HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/creating-dynamic-table-in-php/' rel='bookmark' title='Permanent Link: Creating dynamic table in PHP : Easy and Simple tutorial'>Creating dynamic table in PHP : Easy and Simple tutorial</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In this article, I will be illustrating about getting html source code of any website. I have done this in PHP.</p>
<p class="MsoNormal" style="text-align: justify;">
<p><span id="more-65"></span></p>
<p class="MsoNormal" style="text-align: justify;">I created an html form for submitting the website url. After the url is submitted, the PHP code does all the magic to display full html source code of that particular website. The source code is displayed in a textarea.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--></p>
<p class="MsoNormal" style="text-align: justify;"><!--[if gte mso 10]></p>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-ansi-language:#0400;
	mso-fareast-language:#0400;
	mso-bidi-language:#0400;}
</style>
<p><![endif]--></p>
<p class="MsoNormal" style="text-align: justify;"><span style="color: purple;">$domain = $_POST['domain'];</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="color: purple;">$handle = fopen(&#8220;http://$domain&#8221;,&#8221;r&#8221;);</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="color: purple;">//$contents = stream_get_contents($handle);</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="color: purple;">$contents = &#8221;;</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="color: purple;">while (!feof($handle)) {</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="color: purple;">$contents .= fread($handle, 8192);</span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="color: purple;">} </span></p>
<p class="MsoNormal" style="text-align: justify;"><span style="color: purple;">fclose($handle);</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">At first the website url submitted through the html form is opened with <em>fopen()</em>. Then, using <em>while</em> loop, the <em>$contents</em> string variable is populated (concatenated) until the end of file is reached. Finally, the file/url pointer is closed with <em>fclose()</em>.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">You can also get all the contents without using loop. You can get it with the stream_get_contents() function. But this function is only supported by PHP 5+. <em><span lang="EN">stream_get_contents()</span></em><span lang="EN"> operates on an already open stream resource and returns the remaining contents in a string. <em>stream_get_contents()</em> will not work in PHP versions lower than PHP 5. If you are using PHP versions lower than PHP 5, then better not use it.</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><strong>Description of functions used:</strong></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><em>fopen()</em> opens the url. The mode used here (i.e. ‘r’) is read mode.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><em>feof()</em> tests for end-of-file on a file pointer. It returns true if the file pointer is at EOF; otherwise it returns false.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><em><span lang="EN">fread()</span></em><span lang="EN"> reads up to <var>length</var> bytes from the file pointer referenced by <var>handle</var>. Reading stops when up to <var>length</var> bytes have been read, EOF (end of file) is reached, (for network streams) when a packet becomes available, or (after opening userspace stream) when 8192 bytes have been read whichever comes first. </span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><em><span lang="EN">fclose()</span></em><span lang="EN"> closes an open file pointer.</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span lang="EN"><a title="HTML Source Code Viewer" href="http://chapagain.com.np/codeviewer.php" target="_blank">View it live</a></span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">Full <span lang="EN">source code:</span></p>
<p style="text-align: justify;">
<pre class="brush: php; title: ; notranslate">&lt;?php
if(isset($_POST['submit']))
{
$domain = $_POST['domain'];
$handle = fopen(&quot;http://$domain&quot;,&quot;r&quot;);
//$contents = stream_get_contents($handle);
$contents = '';
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
//var_dump($contents);
}&lt;/p&gt;
?&gt;&lt;/p&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;HTML Source Code Viewer&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;&lt;/p&gt;
&lt;h2&gt;
HTML Source Code Viewer
&lt;/h2&gt;&lt;/p&gt;
&lt;form method=&quot;post&quot; name=&quot;pageform&quot; action=&quot;&quot; onsubmit=&quot;return validate(this);&quot;&gt;&lt;/p&gt;
&lt;table border=&quot;0&quot; style=&quot;border-collapse: collapse&quot; width=&quot;&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;&quot; height=&quot;91&quot; valign=&quot;top&quot;&gt;
&lt;table style=&quot;border-collapse: collapse&quot; width=&quot;&quot; class=&quot;tooltop&quot; height=&quot;76&quot;&gt;&lt;/p&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;table border=&quot;0&quot; style=&quot;border-collapse: collapse&quot; width=&quot;&quot; cellspacing=&quot;5&quot;&gt;
&lt;tr&gt;
&lt;td height=&quot;28&quot; width=&quot;100&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;b&gt;View source of&lt;/b&gt;&lt;/font&gt;&lt;b&gt;&lt;font size=&quot;2&quot;&gt;:
&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;td height=&quot;28&quot; width=&quot;&quot;&gt;
&lt;font size=&quot;1&quot;&gt;http://&lt;/font&gt;&lt;input type=&quot;text&quot; name=&quot;domain&quot; size=&quot;26&quot; value=&quot;&lt;?=$_POST['domain']?&gt;&quot;&gt;&lt;/td&gt;
&lt;td height=&quot;28&quot; width=&quot;&quot;&gt;
&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;View!&quot; style=&quot;float: left&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width=&quot;&quot; height=&quot;21&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td width=&quot;&quot; colspan=&quot;2&quot; height=&quot;21&quot; valign=&quot;top&quot;&gt;&lt;font size=&quot;1&quot;&gt;(eg. chapagain.com.np)&lt;/font&gt;&lt;/td&gt;&lt;/p&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;?php
if(isset($_POST['submit']))
{
?&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;textarea rows=&quot;10&quot; cols=&quot;60&quot; name=&quot;code&quot;&gt;&lt;?=$contents?&gt;&lt;/textarea&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;?php
}
?&gt;
&lt;/table&gt;
&lt;/form&gt;
&lt;script language=&quot;JavaScript&quot;&gt;
function validate(theform) {
if (theform.domain.value == &quot;&quot;) { alert(&quot;No Domain&quot;); return false; }
return true;
}
&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]></p>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-ansi-language:#0400;
	mso-fareast-language:#0400;
	mso-bidi-language:#0400;}
</style>
<p><![endif]--></p>
<p class="MsoNormal" style="text-align: justify;">
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=65&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/how-to-change-the-source-code-and-modifyparse-a-website/' rel='bookmark' title='Permanent Link: How to change the source code and modify/parse a website?'>How to change the source code and modify/parse a website?</a></li>
<li><a href='http://blog.chapagain.com.np/php-read-write-csv/' rel='bookmark' title='Permanent Link: PHP: Read Write CSV'>PHP: Read Write CSV</a></li>
<li><a href='http://blog.chapagain.com.np/php-source-code-encoding-with-ioncube-php-encoder/' rel='bookmark' title='Permanent Link: PHP source code encoding with ionCube PHP Encoder'>PHP source code encoding with ionCube PHP Encoder</a></li>
<li><a href='http://blog.chapagain.com.np/javascript-add-remove-html-elements/' rel='bookmark' title='Permanent Link: Javascript: Add Remove HTML elements'>Javascript: Add Remove HTML elements</a></li>
<li><a href='http://blog.chapagain.com.np/creating-dynamic-table-in-php/' rel='bookmark' title='Permanent Link: Creating dynamic table in PHP : Easy and Simple tutorial'>Creating dynamic table in PHP : Easy and Simple tutorial</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Creating dynamic table in PHP : Easy and Simple tutorial</title>
		<link>http://blog.chapagain.com.np/creating-dynamic-table-in-php/</link>
		<comments>http://blog.chapagain.com.np/creating-dynamic-table-in-php/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 05:04:22 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/2007/12/09/creating-dynamic-table-in-php/</guid>
		<description><![CDATA[Problem: I want to create a dynamic table with a row starting after certain number of columns, i.e. like, i want to create an html table which automatically generate new row after 3 columns in a row. Solution: Here, $content is an array of 9 numbers (1 to 9). The array value can be any. [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/' rel='bookmark' title='Permanent Link: Add, edit, delete, login, register in PHP :: A simple and complete tutorial'>Add, edit, delete, login, register in PHP :: A simple and complete tutorial</a></li>
<li><a href='http://blog.chapagain.com.np/php-how-to-get-stock-quote-data-from-yahoo-finance-complete-code-and-tutorial/' rel='bookmark' title='Permanent Link: PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)'>PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)</a></li>
<li><a href='http://blog.chapagain.com.np/alter-mysql-table-to-add-drop-column-add-foreign-key/' rel='bookmark' title='Permanent Link: Alter MySQL table to add &#038; drop column &#038; add Foreign Key'>Alter MySQL table to add &#038; drop column &#038; add Foreign Key</a></li>
<li><a href='http://blog.chapagain.com.np/simple-and-easy-jquery-tabs-with-ajax-and-php/' rel='bookmark' title='Permanent Link: Simple and easy jQuery tabs with AJAX and PHP'>Simple and easy jQuery tabs with AJAX and PHP</a></li>
<li><a href='http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/' rel='bookmark' title='Permanent Link: Very simple add, edit, delete, display in PHP'>Very simple add, edit, delete, display in PHP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>I want to create a dynamic table with a row starting after certain number of columns, i.e. like, i want to create an html table which automatically generate new row after 3 columns in a row.</p>
<p><strong>Solution:</strong></p>
<pre class="brush: php; title: ; notranslate">
$content = array(1, 2, 3, 4, 5, 6, 7, 8, 9);
&lt;table border=&quot;1&quot; width=&quot;50%&quot;&gt;
&lt;tr&gt;
	&lt;?php
	$counter = 0;
	foreach($content as $data) {
		if($counter != 0 &amp;&amp; $counter%3 == 0) {
			?&gt;
			&lt;/tr&gt;&lt;tr&gt;
			&lt;?php
		}
		?&gt;
		&lt;td&gt;
			&lt;?php echo $data; ?&gt;
		&lt;/td&gt;
		&lt;?php
		$counter++;
	}
?&gt;
&lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><span id="more-37"></span></p>
<p>Here, <strong>$content</strong> is an array of 9 numbers (1 to 9). The array value can be any. You can have your custom array with your custom values. I have looped through the array and printed data in a html table. I have created new row after 3 columns have been created.</p>
<p>Happy PHPing!</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=37&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/' rel='bookmark' title='Permanent Link: Add, edit, delete, login, register in PHP :: A simple and complete tutorial'>Add, edit, delete, login, register in PHP :: A simple and complete tutorial</a></li>
<li><a href='http://blog.chapagain.com.np/php-how-to-get-stock-quote-data-from-yahoo-finance-complete-code-and-tutorial/' rel='bookmark' title='Permanent Link: PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)'>PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)</a></li>
<li><a href='http://blog.chapagain.com.np/alter-mysql-table-to-add-drop-column-add-foreign-key/' rel='bookmark' title='Permanent Link: Alter MySQL table to add &#038; drop column &#038; add Foreign Key'>Alter MySQL table to add &#038; drop column &#038; add Foreign Key</a></li>
<li><a href='http://blog.chapagain.com.np/simple-and-easy-jquery-tabs-with-ajax-and-php/' rel='bookmark' title='Permanent Link: Simple and easy jQuery tabs with AJAX and PHP'>Simple and easy jQuery tabs with AJAX and PHP</a></li>
<li><a href='http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/' rel='bookmark' title='Permanent Link: Very simple add, edit, delete, display in PHP'>Very simple add, edit, delete, display in PHP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/creating-dynamic-table-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What are Meta-Tags? Full Description of Meta tags</title>
		<link>http://blog.chapagain.com.np/meta-tags/</link>
		<comments>http://blog.chapagain.com.np/meta-tags/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 06:41:50 +0000</pubDate>
		<dc:creator>mukeshChapagain</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[meta-tags]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=11</guid>
		<description><![CDATA[Meta tags are HTML tags which provide information that describes the content of the webpage a user will be viewing. Meta tags have two possible attributes: a) b) (Note: I have used my name and my links in many of the examples below. Don’t forget to put your own name and description there.) a) HTTP-EQUIV [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/dynamically-change-page-title-and-meta-tags-in-c/' rel='bookmark' title='Permanent Link: Dynamically change page title and meta tags in C#'>Dynamically change page title and meta tags in C#</a></li>
<li><a href='http://blog.chapagain.com.np/magento-show-hide-website-to-search-engines-by-adjusting-robots-meta-tag/' rel='bookmark' title='Permanent Link: Magento: Show/Hide website to search engines by adjusting robots meta tag'>Magento: Show/Hide website to search engines by adjusting robots meta tag</a></li>
<li><a href='http://blog.chapagain.com.np/magento-setchange-page-layout-title-tag-meta-keywords-and-description/' rel='bookmark' title='Permanent Link: Magento: Set/Change page layout, title tag, meta keywords and description'>Magento: Set/Change page layout, title tag, meta keywords and description</a></li>
<li><a href='http://blog.chapagain.com.np/magento-set-title-keywords-and-description-in-your-module/' rel='bookmark' title='Permanent Link: Magento: Set title, keywords and description in your module'>Magento: Set title, keywords and description in your module</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-archive-link-not-working/' rel='bookmark' title='Permanent Link: WordPress: Archive link not working'>WordPress: Archive link not working</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align: justify;">Meta tags are HTML tags which provide information that describes the content of the webpage a user will be viewing.</p>
<p class="MsoNormal" style="text-align: justify;">Meta tags have two possible attributes:</p>
<p><span id="more-11"></span></p>
<p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in;"><!--[if !supportLists]--><span>a)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal;"> </span></span><!--[endif]--></p>
<p class="MsoNormal" style="text-align: justify;"><!--[if !supportLists]--><span> b)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal;"> </span></span><!--[endif]--></p>
<p class="MsoNormal" style="text-align: justify;">(<span style="text-decoration: underline;">Note:<em> I have used my name and my links in many of the examples below. Don’t forget to put your own name and description there</em></span>.)</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><strong>a) HTTP-EQUIV Tags</strong></p>
<p class="MsoNormal" style="text-align: justify;">Meta tags with an HTTP-EQUIV attribute are equivalent to HTTP headers. Typically, they control the action of browsers, and may be used to refine the information provided by the actual headers. They are:-</p>
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Expires<span style="text-decoration: none;"> </span></span></p>
<p class="MsoNormal" style="text-align: justify;">The date and time after which the document should be considered expired.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Content-Type</span></p>
<p class="MsoNormal" style="text-align: justify;">This gives the character set.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Content-Script-Type</span></p>
<p class="MsoNormal" style="text-align: justify;">Specifies the default scripting language in a document.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Content-Style-Type</span></p>
<p class="MsoNormal" style="text-align: justify;">Specifies the default stylesheet language for the document.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Content-language</span></p>
<p class="MsoNormal" style="text-align: justify;">Used to declare the natural language of the document. May be used by robots to categorize by language. Languages are specified as the pair (language-dialect); here below, English-British (en-GB)</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Refresh</span></p>
<p class="MsoNormal" style="text-align: justify;">Specifies a delay in seconds before the browser automatically reloads the document. Optionally, specifies an alternative URL to load.</p>
<p class="MsoNormal">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Pragma</span></p>
<p class="MsoNormal" style="text-align: justify;">This tag tells IE not to cache the page.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><strong>b) NAME attributes</strong></p>
<p class="MsoNormal" style="text-align: justify;">Meta tags with a name attribute are used for other types which do not correspond to HTTP Headers. They are:-</p>
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Robots</span></p>
<p class="MsoNormal" style="text-align: justify;">Controls web robots on a per-page basis, <span style="color: black;">whether to index a page or not (index/noindex), and whether to follow links on the page or not (follow/nofollow). You can use these in any combination you want. </span></p>
<p class="MsoNormal"><code><span style="font-family: 'Times New Roman';">- <em>index, follow</em></span></code><span style="color: black;"> &#8211; Default value. Page will be indexed, and links on the page will be followed. </span></p>
<p class="MsoNormal"><code><span style="font-family: 'Times New Roman';">- <em>index, nofollow</em></span></code><span style="color: black;"> &#8211; Page will be indexed, but any links on the page will not be followed. </span></p>
<p class="MsoNormal"><code><span style="font-family: 'Times New Roman';">- <em>noindex, follow</em></span></code><span style="color: black;"> &#8211; Page will not be indexed, but links on the page will be followed. </span></p>
<p class="MsoNormal" style="text-align: justify;"><code><span style="font-family: 'Times New Roman';">- <em>noindex,nofollow</em></span></code><span style="color: black;"> &#8211; Page will not be indexed, and links on the page will not be followed.</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Description<span style="text-decoration: none;"> </span></span></p>
<p class="MsoNormal" style="text-align: justify;">A short, plain language description of the document. Keep it short and to the point.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Keywords</span></p>
<p class="MsoNormal" style="text-align: justify;">Keywords are used by search engine to index our document in addition to words from the title and document body. <span style="color: black;">It lets you specify keywords people might use when looking for your site. Enter as many as you can think of, but don&#8217;t repeat each word more than once.</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Author</span></p>
<p class="MsoNormal" style="text-align: justify;">The author’s name.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Copyright</span></p>
<p class="MsoNormal" style="text-align: justify;">A copyright statement.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Rating</span></p>
<p class="MsoNormal" style="text-align: justify;">A way to say that your site is family safe.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Revisit-after</span></p>
<p class="MsoNormal" style="text-align: justify;">This tells the search engine to come back again and re-index your site every 10 days (in case of this example)</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Distribution</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Classification</span></p>
<p class="MsoNormal" style="text-align: justify;">What kind of directory heading does this come under.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Reply-to</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">Enjoy!!!</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=11&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/dynamically-change-page-title-and-meta-tags-in-c/' rel='bookmark' title='Permanent Link: Dynamically change page title and meta tags in C#'>Dynamically change page title and meta tags in C#</a></li>
<li><a href='http://blog.chapagain.com.np/magento-show-hide-website-to-search-engines-by-adjusting-robots-meta-tag/' rel='bookmark' title='Permanent Link: Magento: Show/Hide website to search engines by adjusting robots meta tag'>Magento: Show/Hide website to search engines by adjusting robots meta tag</a></li>
<li><a href='http://blog.chapagain.com.np/magento-setchange-page-layout-title-tag-meta-keywords-and-description/' rel='bookmark' title='Permanent Link: Magento: Set/Change page layout, title tag, meta keywords and description'>Magento: Set/Change page layout, title tag, meta keywords and description</a></li>
<li><a href='http://blog.chapagain.com.np/magento-set-title-keywords-and-description-in-your-module/' rel='bookmark' title='Permanent Link: Magento: Set title, keywords and description in your module'>Magento: Set title, keywords and description in your module</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-archive-link-not-working/' rel='bookmark' title='Permanent Link: WordPress: Archive link not working'>WordPress: Archive link not working</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/meta-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cascading StyleSheet (CSS) :: Property Value Pairs</title>
		<link>http://blog.chapagain.com.np/cascading-stylesheet-css-property-value-pairs/</link>
		<comments>http://blog.chapagain.com.np/cascading-stylesheet-css-property-value-pairs/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 10:08:14 +0000</pubDate>
		<dc:creator>mukeshChapagain</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=6</guid>
		<description><![CDATA[CSS Syntax Introduction The CSS syntax is made up of three parts: a selector, a property and a value: selector {property: value} The selector is normally the HTML element/tag you wish to define, the property is the attribute you wish to change, and each property can take a value. The property and value are separated [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/' rel='bookmark' title='Permanent Link: Page.IsPostBack property: A solution to the client postback problem'>Page.IsPostBack property: A solution to the client postback problem</a></li>
<li><a href='http://blog.chapagain.com.np/meta-tags/' rel='bookmark' title='Permanent Link: What are Meta-Tags? Full Description of Meta tags'>What are Meta-Tags? Full Description of Meta tags</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-setup-google-adsense-in-your-website/' rel='bookmark' title='Permanent Link: How to setup Google AdSense for your website'>How to setup Google AdSense for your website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="Section1"><span style="font-size: 14pt">CSS  Syntax Introduction</span></p>
<p>The CSS syntax is made up of three parts: a selector, a property and a  value:</p>
<p><span class="GramE">selector</span> {property: value}</p>
<p><span id="more-6"></span></p>
<p>The selector is normally the HTML element/tag you wish to define, the  property is the attribute you wish to change, and each property can take a  value. The property and value are separated by a colon, and surrounded by curly  braces:</p>
<p><span class="GramE">body</span> {color: black}</p>
<p>If the value is multiple words, put quotes around the value:</p>
<p><span class="GramE">p</span> {font-family: &#8220;sans serif&#8221;}</p>
<p>If you wish to specify more than one property, you must separate each  property with a semicolon. The example below shows how to define a center  aligned paragraph, with a red text color:</p>
<p><span class="GramE">p</span> {text-<span class="SpellE">align:center;color:red</span>}</p>
<p><span style="font-size: 14pt">Properties</span></p>
<p>The different categories of property are explained below:</p>
<p><strong>Text style  properties</strong></p>
<p>These properties affect how text appears on a page. The different text style  properties are as under:</p>
<p><span class="GramE"><u>color</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->sets the foreground color of an element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: aqua}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: black} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: blue}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: fuchsia}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: #808080}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: maroon}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{color: #ffa500}</p>
<p><span class="GramE"><u>font-weight</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->the weight of the font is how bold it is</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: bold}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: bolder} (use of relative keywords: <em>bolder, lighter</em>)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: lighter}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><em>bolder</em>  specifies that the text should be one degree bolder than the parent element and  <em>lighter</em> specifies that the text  should be one degree lighter than parent element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-weight: 100} (use of numeric values:  100,200,300,400,500,600,700,800,900)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->Each value is one degree bolder than the previous value.  <span class="GramE"><em>normal</em></span> is  equivalent to 400 and <em>bold</em> is  equivalent to 700.</p>
<p><span class="GramE"><u>font-family</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property specifies a hierarchy list of preferred  fonts that a browser should use to draw the element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-family: Verdana, Arial, Helvetica, sans-serif}</p>
<p><span class="GramE"><u>font-size</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><span class="GramE">specifies</span> how large text  appears on a web page.</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2point} (abbrev. pt)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2em} (abbrev. <span class="SpellE">em</span>)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2ex} (abbrev. ex)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2pica} (abbrev. pc)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2pixel} (abbrev. <span class="SpellE">px</span>)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 2inche} (abbrev. in)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 10millimeter} (abbrev. mm)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: 5centimeter} (abbrev. cm)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: small}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: larger}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: smaller}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: xx-small}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: x-small}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: medium} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: large}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: x-large}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-size: xx-large}</p>
<p><span class="GramE"><u>font-variant</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this specifies that the text should appear in small  capitals</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-variant: normal } (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-variant: small-caps}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><em>normal  </em>specifies that the text should appear using capital or lowercase letters as  it appears in source and <em>small-caps</em>  specifies that the lower case letters (but not capitals) should appear as small  capital letters</p>
<p><span class="GramE"><u>font-style</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-style: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-style: italic}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{font-style: oblique}</p>
<p><span class="GramE"><u>text-decoration</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: none} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: underline}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: <span class="SpellE">overline</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: line-through}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-decoration: blink}</p>
<p><span class="GramE"><u>text-transform</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this allows you to specify the capitalization of  text</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-transform: capitalize} (the first letter of each  word is in capital letters)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-transform: uppercase} (every letter is in  uppercase)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-transform: lowercase} (every letter is in  lowercase)</p>
<p><strong> </strong></p>
<p><strong>Text Layout  Properties</strong></p>
<p><span class="GramE"><u>letter-spacing</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this gives you control over the space between  characters</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{letter-spacing: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{letter-spacing: 2px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{letter-spacing: 2in}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->Other units of measurement are <span class="SpellE">em</span>, ex, pica (pc), point (pt), pixel (<span class="SpellE"><span class="GramE">px</span></span>), millimeter (mm), centimeter  (cm), inch (in).</p>
<p><span class="GramE"><u>word-spacing</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this gives you control over the space between words</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{word-spacing: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{word-spacing: 2px} (other example of length units are  given above)</p>
<p><span class="GramE"><u>line-height</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property sets the distance between adjacent  lines</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{line-height: normal} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{line-height: 1.2}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{line-height: 120%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{line-height: 2px}</p>
<p><span class="GramE"><u>vertical-</u></span><u>align</u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property gives control over how elements align  vertically across the page</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: baseline} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: middle}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: sub}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: super}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: text-top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: text-bottom}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: bottom}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{vertical-align: 20%}</p>
<p><span class="GramE"><u>text-indent</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property enables you to control how the first line  of any element is indented, or <span class="SpellE">outdented</span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-indent: 5px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-indent: 10%}</p>
<p><span class="GramE"><u>text-</u></span><u>align</u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-align: left}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-align: right}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-align: center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{text-align: justify}</p>
<p><span class="GramE"><u>direction</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property specifies the base direction for text</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{direction: <span class="SpellE">rtl</span>} (means the  text should flow from right to left)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{direction: <span class="SpellE">ltr</span>} (means the  text should flow from left to right) (default)</p>
<p><strong>Background  properties</strong></p>
<p><span class="GramE"><u>background-color</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies background color of an element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-color: maroon}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-color: #336699}</p>
<p><span class="GramE"><u>background-image</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-image: <span class="SpellE">url</span>(image1.gif)}</p>
<p><span class="GramE"><u>background-attachment</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies whether the background image should scroll or  remain fixed</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-attachment: scroll} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-attachment: fixed}</p>
<p><span class="GramE"><u>background-repeat</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-repeat: repeat} (tiling the background image  horizontally and vertically)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-repeat: repeat-x} (tiles an image  horizontally but not vertically)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-repeat: repeat-y} (tiles an image vertically  but not horizontally)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-repeat: no-repeat} (makes the image appear  once and doesn’t tile image)</p>
<p><span class="GramE"><u>background-position</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies where a background image is placed</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: 0% 0%} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: 15% 25%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: 20px <span class="SpellE">20px</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: top left}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: left top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: top center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: right top}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: left center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: right center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: bottom left}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: bottom-center}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background-position: bottom-right}</p>
<p><span class="GramE"><u>background</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this is a shorthand property that lets you set any or  all background properties at once</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{background: <span class="SpellE">url</span>(http://www.chapagain.com.np/gifs/mukesh1.gif) fixed  no-repeat top center} is equivalent to the below four properties:</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->background-image: <span class="SpellE">url</span>(http://www.chapagain.com.np/gifs/mukesh1.gif);</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->background-attachment: fixed;</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->background-repeat: no-repeat;</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->background-position: top center;</p>
<p><strong>Border properties</strong></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-width: thin}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-width: medium} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-width: thick}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-top-width: 2pt}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-left-width: medium}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-right-width: 2em}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-bottom-width: 2px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-color: #336699}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-color: #336699 #003366}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-color: maroon green blue}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-color: maroon green blue yellow}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: none} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: dotted dashed}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: solid}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: solid double groove}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-style: none ridge inset outset}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><span class="GramE"><em>border</em></span><em>, border-top, border-bottom, border-left,  border-right </em>let you specify with one property any or all of <em>border-style, border-width, border-color  </em>values for each edge respectively, or the entire border.</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{border-top: red thick solid}</p>
<p><strong> </strong></p>
<p><strong>Margin properties</strong></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->A margin is the space between an element and the  elements to its top, left, bottom and right. Margin can be negative values.</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin: auto}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin-top: 20%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin-bottom: 2px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin-left: -2cm}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{margin-bottom: 2em}</p>
<p><strong>Padding properties</strong></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->Padding is the space between the edge of an element (its  border) and its contents. Padding cannot take negative values.</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{padding: 4px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{padding-right: 20%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{padding-left: 9mm}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{padding-bottom: 1in}</p>
<p><strong>Page Layout properties</strong></p>
<p><span class="GramE"><u>position</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property is used to determine what the coordinates  are with respect to, or how the element will be drawn</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{position: static} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{position: relative}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{position: absolute}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{position: fixed}</p>
<p><span class="GramE"><u>top</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies where the top of an element will be placed</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{top: auto} (this is default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{top: 4px} (using length values)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{top: 4%} (using percentage values)</p>
<p><span class="GramE"><u>left</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies where the left of an element will be  placed</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{left: auto}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{left: 4px}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{left: 55%}</p>
<p><span class="GramE"><u>bottom</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{bottom: auto}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{bottom: 4in}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{bottom: 9%}</p>
<p><span class="GramE"><u>right</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{right: auto}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{right: 4cm}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{right: 40%}</p>
<p><span class="GramE"><u>width</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies how wide an element will appear on the  page</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{width: auto} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{width: 5%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{width: 5em}</p>
<p><span class="GramE"><u>min-width</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->allows you to specify a minimum width for an element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{min-width: auto} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{min-width: 5%}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{min-width: 5mm}</p>
<p><span class="GramE"><em>max-width</em></span><em>, height, max-height, min-height</em> are  similar as above</p>
<p><span class="GramE"><u>z-index</u></span><u> </u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->determine which elements will appear in front of others  when they overlap</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{z-index: auto} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{z-index: 5} (using integer values)</p>
<p><span class="GramE"><u>visibility</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->lets you make an element either visible or invisible</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{visibility: inherit} (having same visibility as its  parent) (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{visibility: visible}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{visibility: hidden}</p>
<p><span class="GramE"><u>overflow</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->let you specify how a browser should display an element  where its contents do not fit into its width and height</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{overflow: visible} (default) (means browser should  increase the actual width and/or height of the element to display all of its  contents)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{overflow: scroll} (means that the browser should place  scrollbars on the element whether or not the contents of the element have  overflowed)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{overflow: auto} (means that the browser should add  scrollbars as needed to enable users to scroll horizontally and/or vertically to  show hidden contents of the element)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{overflow: hidden} (display only the contents which are  visible within the specified width and height)</p>
<p><span class="GramE"><u>float</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property takes an element out of the flow and place  it to the right or left of other elements in the same parent element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{float: none} (this is default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{float: right}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{float: left}</p>
<p><span class="GramE"><u>clear</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property can be used in conjunction with <em>float</em> to specify whether and or where an  element allows floating alongside it</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{clear: none} (default) (element allows floating on  either side)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{clear: left} (element doesn’t allow floating on its  left)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{clear: right} (element doesn’t allow floating on its  right)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{clear: both} (element doesn’t allow floating either on  its left or its right)</p>
<p><strong>User Interface properties</strong></p>
<p><span class="GramE"><u>cursor</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property sets the shape of the cursor when the  mouse is hovering over a selected element</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: auto} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: crosshair}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: default}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: pointer}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: move}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: *-resize} (Indicates that the edge is to be  moved. * is replaced with N, S, E, W, NE, NW, SE, SW which are directions, for  each of the edges)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: text}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: wait}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{cursor: help}</p>
<p><span class="GramE"><u>outline</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->sets the outline around an element<span>           </span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]--><em>outline</em> is  the shorthand for three properties <em>outline-color, outline-width </em>and <em>outline-style</em></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-color: invert} (default) (indicates that the  outline will be visible regardless of background color)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-color: #ffa500}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-color: purple}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: none} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: dotted}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: dashed}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: solid}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: double}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: groove}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: ridge}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: inset}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-style: outset}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-width: thick}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-width: medium} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-width: thick}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{outline-width: 4px}</p>
<p><strong>Element Type properties</strong></p>
<p><span class="GramE"><u>display</u></span><u></u></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->determines how an element will be drawn on the page</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: none}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: block}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: inline} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: list-item}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: inline-block}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{display: run-in}</p>
<p><span class="GramE"><u>white-space</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property applies only to block elements, and  specifies what should be done by the browser with extraneous <span class="SpellE">whitespace</span> (tabs, extra spaces, returns and so on)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{white-space: none} (default) (<span class="SpellE"><span class="GramE">whitespace</span></span> are handled in traditional manner. Any  tabs, extraneous spacing will be ignored.)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{white-space: pre} (keeps all <span class="SpellE">whitespace</span> as it appears in the element)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{white-space: <span class="SpellE">nowrap</span>}  (contents of the element will only wrap (break to a new line) when an explicit  line break <<span class="SpellE">br</span>> is in the contents)</p>
<p><span class="GramE"><u>list-style-type</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->lets you determine what maker (or bullet point) if any  is associated with a list item</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: none}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: disc} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: circle}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: square}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: decimal}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: decimal-leading-zero}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: lower-roman}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: upper-roman}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: lower-alpha}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: upper-alpha}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: lower-<span class="SpellE">greek</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: upper-<span class="SpellE">latin</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: lower-<span class="SpellE">latin</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: <span class="SpellE">hebrew</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: <span class="SpellE">armenian</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: <span class="SpellE">georgian</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: <span class="SpellE">cjk</span>-ideographic}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: hiragana}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: katakana}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: hiragana-<span class="SpellE">iroha</span>}</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-type: katakana-<span class="SpellE">iroha</span>}</p>
<p><span class="GramE"><u>list-style-image</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->specifies an image by URL as the maker for the list  item</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-image: none} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-image: <span class="SpellE">url</span>(image1.gif)}</p>
<p><span class="GramE"><u>list-style-position</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-position: outside} (default)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style-position: inside}</p>
<p><span class="GramE"><u>list-style</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->this property is the shorthand property that allows you  to specify and set all list style property value with one property</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{list-style: disc <span class="SpellE">url</span>(image1.gif) inside}</p>
<p><span class="GramE"><u>table-layout</u></span></p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->enables the specification of which of the approach is  taken to laying out a table</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{table-layout: auto} (default) (recalculate the row and  column and cell sizes based on their content)</p>
<p style="margin-left: 0.5in; text-indent: -0.25in"><!--[if !supportLists]--><span>-<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal">          </span></span><!--[endif]-->{table-layout: fixed} (ignore any content and simply use  the height and width specified for rows and columns)</p>
<p><span style="font-size: 14pt">Reference:</span></p>
<p class="MsoNormal" style="text-align: justify">[1] www.westciv.com/style_master/academy/css_tutorial/introduction/index.html</p>
<p>[2] http://www.w3schools.com/css/css_font.asp</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=6&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/pageispostback-property-a-solution-to-the-client-postback-problem/' rel='bookmark' title='Permanent Link: Page.IsPostBack property: A solution to the client postback problem'>Page.IsPostBack property: A solution to the client postback problem</a></li>
<li><a href='http://blog.chapagain.com.np/meta-tags/' rel='bookmark' title='Permanent Link: What are Meta-Tags? Full Description of Meta tags'>What are Meta-Tags? Full Description of Meta tags</a></li>
<li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-get-html-source-code-of-a-website/' rel='bookmark' title='Permanent Link: How to get(view) html source code of a website'>How to get(view) html source code of a website</a></li>
<li><a href='http://blog.chapagain.com.np/how-to-setup-google-adsense-in-your-website/' rel='bookmark' title='Permanent Link: How to setup Google AdSense for your website'>How to setup Google AdSense for your website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/cascading-stylesheet-css-property-value-pairs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
