<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-1967188167917947149</atom:id><lastBuildDate>Thu, 19 Mar 2026 16:20:29 +0000</lastBuildDate><category>php</category><category>Sample php code</category><category>mysql</category><category>A. Web Design Unit II</category><category>Interview questions</category><category>Sample javascript code</category><category>All Software Companies in Pondicherry</category><category>Interview questions with answers</category><category>javascript</category><category>CSS</category><category>doubts</category><category>A. Web Design Unit III</category><category>AJAX</category><category>CURL</category><category>Curl with example</category><category>Drupal</category><category>Payment gateways</category><category>Mysql Joins with example</category><category>PHP Companies</category><category>zencart</category><category>Comparison php with others</category><category>Content types</category><category>Cron job with example</category><category>File types</category><category>Pondicherry</category><category>Remove file</category><category>XML</category><category>history of php</category><category>oscommerce</category><category>paypal</category><category>php manuals</category><category>zencart vs oscommerce</category><category>12 Codd's Rule for RDBMS</category><category>Avoid spam mail</category><category>Change your move</category><category>Chennai</category><category>Country list SQL file</category><category>Create PDF file</category><category>Create system menu</category><category>DHTML</category><category>Difference between HTML</category><category>Download coding</category><category>Download image file</category><category>Easy Steps for Cron tab</category><category>Email Id validation</category><category>Embedded Technologies</category><category>Encrypt vs Decrypt</category><category>English Dictionary Sql download</category><category>Export CSV format</category><category>FLV player</category><category>FPDF issue</category><category>File Search using php</category><category>Find Browser using in PHP</category><category>Get IP Address</category><category>Google Checkout</category><category>HTML5?</category><category>History of CSS</category><category>History of MySQL</category><category>India</category><category>Introduction to CURL</category><category>Introduction to JOINs</category><category>Linux commands</category><category>List of DBMS and RDBMS Databases</category><category>List of Normalization Techniques</category><category>MIME</category><category>Manase Relax Please</category><category>PHP founders</category><category>PHP with XML</category><category>Principles of php masters</category><category>Remote Server using PHP</category><category>Scan a file using PHP</category><category>Script optimization</category><category>Storage Engine and Table types</category><category>Syntax for joins</category><category>Tab effect functionality in drupal admin</category><category>Tamil fonts download</category><category>Tips for W3C Validation (HTML)</category><category>Top PHP CMS</category><category>Top PHP Companies</category><category>Top PHP Frameworks</category><category>Types of JOINs</category><category>XHTML</category><category>Zend Certification Exam</category><category>evergreen php</category><category>folders</category><category>htaccess notes</category><category>keypress javascript code</category><category>maximum file uploading size</category><category>php 4 vs php 5</category><category>php.ini</category><title>Sharing php, javascript, css, mysql, ajax</title><description>share our PHP knowledge on the basis of PHP versioning, Javascript, AJAX, Stylesheet, PHP interview questions, technical questions, PHP related with different DB and future of PHP</description><link>http://evergreenphp.blogspot.com/</link><managingEditor>noreply@blogger.com (Unknown)</managingEditor><generator>Blogger</generator><openSearch:totalResults>155</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-971826234093443235</guid><pubDate>Fri, 21 Jun 2019 18:35:00 +0000</pubDate><atom:updated>2019-06-21T11:42:24.752-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Email Id validation</category><title>Email id validation using php - Sample code</title><description>&lt;strong&gt;PHP - Validate E-mail&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;
The easiest and safest way to check whether an email address is well-formed is to use PHP's &lt;strong&gt;&lt;em&gt;filter_var()&lt;/em&gt;&lt;/strong&gt; function.&amp;nbsp; In the code below, if the e-mail address is not well-formed, then store an error message:&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;Sample Program: #1&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;
$email = test_input($_POST["email"]);&lt;br /&gt;
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {&lt;br /&gt;
&amp;nbsp; $emailErr = "Invalid email format"; &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;Sample Program: #2&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;div class="line number1 index0 alt2"&gt;
&lt;br /&gt;
// PHP program to validate email &lt;br /&gt;
// Function to validate email using regular expression &lt;br /&gt;
function &lt;strong&gt;email_validation&lt;/strong&gt;($str) { &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return (!preg_match( &lt;br /&gt;
"^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$^", $str)) &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ? FALSE : TRUE; &lt;br /&gt;
} &lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
// Function call &lt;br /&gt;
if(!email_validation("author@evergreenphp.com")) { &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; echo "Invalid email address."; &lt;br /&gt;
} else { &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; echo "Valid email address."; &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;Sample Program: #3&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;&lt;/u&gt;&lt;/strong&gt;&amp;nbsp;&lt;/div&gt;
$email_a = &lt;a href="mailto:'sir@evergreenphp.com'"&gt;'sir@evergreenphp.com'&lt;/a&gt;;&lt;br /&gt;$email_b = 'yourfriend';&lt;br /&gt;
if (filter_var($email_a, FILTER_VALIDATE_EMAIL)) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo "Email ID '$email_a' is considered valid.\n";&lt;br /&gt;}&lt;br /&gt;
&lt;br /&gt;if (filter_var($email_b, FILTER_VALIDATE_EMAIL)) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo "Email ID '$email_b' is considered valid.\n";&lt;br /&gt;} else {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo "Email ID '$email_b' is considered invalid.\n";&lt;br /&gt;}</description><link>http://evergreenphp.blogspot.com/2019/06/email-id-validation-using-php-sample.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>25</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-3016142865888684576</guid><pubDate>Sat, 05 Mar 2016 10:17:00 +0000</pubDate><atom:updated>2016-03-05T02:21:50.093-08:00</atom:updated><title>Hyperlink anchors</title><description>&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;A &lt;b&gt;hyperlink &lt;/b&gt;is a text or a image that you can click on, and move from one page to another web page.&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&lt;b&gt;&lt;u&gt;Syntax:&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="highLT" style="box-sizing: border-box; color: blue; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;&amp;lt;&amp;nbsp;&lt;/span&gt;&lt;span class="highELE" style="box-sizing: border-box; color: brown; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;a&lt;/span&gt;&lt;span style="background-color: white; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="highATT" style="box-sizing: border-box; color: red; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;href=&lt;/span&gt;&lt;span class="highVAL" style="box-sizing: border-box; color: mediumblue; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;"web page&amp;nbsp;&lt;i style="box-sizing: border-box;"&gt;url&lt;/i&gt;"&amp;nbsp;&lt;/span&gt;&lt;span class="highGT" style="box-sizing: border-box; color: blue; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;&amp;gt;&lt;/span&gt;&lt;i style="box-sizing: border-box; font-family: Consolas, 'courier new'; font-size: 16px; line-height: 22.4px;"&gt;link text&lt;/i&gt;&lt;span class="highLT" style="box-sizing: border-box; color: blue; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;&amp;lt;&amp;nbsp;&lt;/span&gt;&lt;span class="highELE" style="box-sizing: border-box; color: brown; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;/a&amp;nbsp;&lt;/span&gt;&lt;span class="highGT" style="box-sizing: border-box; color: blue; font-family: &amp;quot;consolas&amp;quot; , &amp;quot;courier new&amp;quot;; font-size: 16px; line-height: 22.4px;"&gt;&amp;gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;Additional Details &lt;a href="http://www.w3schools.com/html/html_links.asp"&gt;Click here&lt;/a&gt;..&lt;/span&gt;</description><link>http://evergreenphp.blogspot.com/2016/03/hyperlink-anchors.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>46</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-323231668493678058</guid><pubDate>Sun, 07 Feb 2016 04:53:00 +0000</pubDate><atom:updated>2016-02-27T06:30:56.553-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Background Color</title><description>Background Color we can add in a webpage using many ways.&lt;br /&gt;
1. Inline CSS&lt;br /&gt;
2. Internal CSS&lt;br /&gt;
3. External CSS&lt;br /&gt;
&lt;br /&gt;
Background color is applicable to almost all elements. Like TD, TABLE, P, DIV, SPAN etc.,&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Example Code:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdNLbA8AGrEsKakz5k61q7vYqBDidSB_WoHeqg_hC2kMsRFUEvhrKvk3nLdc6Zg76imgQ9qOLWySfttNDUPZzd8niiEiqBys8TCtzSUUEhzuCLnbDq6pXrRzhw8G46KzdsTytG2EaEfiI/s1600/bgcolorCode.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="219" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdNLbA8AGrEsKakz5k61q7vYqBDidSB_WoHeqg_hC2kMsRFUEvhrKvk3nLdc6Zg76imgQ9qOLWySfttNDUPZzd8niiEiqBys8TCtzSUUEhzuCLnbDq6pXrRzhw8G46KzdsTytG2EaEfiI/s640/bgcolorCode.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;Output:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUISEmA8LgJlLrux6Z3_iC-ezKld_rsPcqEopPXu-xI4aPIPePnkJ_WK6TWBBSin0YX4k8s1PtiafWeDCXzcavdfu1dGE44Rrfzit-MuIa4MNo79U68K05z3Jk6G_TMF1bWXXRk-YKX6k/s1600/bgcolorOutput.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="88" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUISEmA8LgJlLrux6Z3_iC-ezKld_rsPcqEopPXu-xI4aPIPePnkJ_WK6TWBBSin0YX4k8s1PtiafWeDCXzcavdfu1dGE44Rrfzit-MuIa4MNo79U68K05z3Jk6G_TMF1bWXXRk-YKX6k/s400/bgcolorOutput.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/background-color.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdNLbA8AGrEsKakz5k61q7vYqBDidSB_WoHeqg_hC2kMsRFUEvhrKvk3nLdc6Zg76imgQ9qOLWySfttNDUPZzd8niiEiqBys8TCtzSUUEhzuCLnbDq6pXrRzhw8G46KzdsTytG2EaEfiI/s72-c/bgcolorCode.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-7113217522973623926</guid><pubDate>Sun, 07 Feb 2016 04:52:00 +0000</pubDate><atom:updated>2016-02-27T06:31:05.724-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Background Graphics/Image</title><description>Background Graphics - which means background image to the web elements or a whole web page. We can add it using many ways.&lt;br /&gt;
1. Inline CSS&lt;br /&gt;
2. Internal CSS&lt;br /&gt;
3. External CSS&lt;br /&gt;
&lt;br /&gt;
Background color is applicable to almost all elements. Like BODY, TD, TABLE, P, DIV etc.,&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Example Code:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8DcYf4Nj7mDWKZ-s4boKx7PpNfZU4ktZLlelABqhfbb8oXMRx_8s8bCcxJdQHHi2kJ83vCLBXPZoMdgNowwwqd7vtxNXg2DVrbL14MeHOgWwq5eplUGWcMhjNUV6a-a51VF9_Gw7I-rA/s1600/bgImageCode.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="264" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8DcYf4Nj7mDWKZ-s4boKx7PpNfZU4ktZLlelABqhfbb8oXMRx_8s8bCcxJdQHHi2kJ83vCLBXPZoMdgNowwwqd7vtxNXg2DVrbL14MeHOgWwq5eplUGWcMhjNUV6a-a51VF9_Gw7I-rA/s640/bgImageCode.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;b&gt;Output:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioCFGDEVz-ye9yCn3q1706KUNHVqJW4kIzWxRXzX4zoEzr-9SbCwp7fqWtCOHi4Jp7JdxdPB5fdTVmzZVNv3N3OcYe8aqEiyqqLHvTdiqXSm-Ynne2Qkk4sIY-ZzZ4MPzGPzzTpmx1sxU/s1600/bgImageOutput.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="195" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioCFGDEVz-ye9yCn3q1706KUNHVqJW4kIzWxRXzX4zoEzr-9SbCwp7fqWtCOHi4Jp7JdxdPB5fdTVmzZVNv3N3OcYe8aqEiyqqLHvTdiqXSm-Ynne2Qkk4sIY-ZzZ4MPzGPzzTpmx1sxU/s400/bgImageOutput.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/background-graphics.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8DcYf4Nj7mDWKZ-s4boKx7PpNfZU4ktZLlelABqhfbb8oXMRx_8s8bCcxJdQHHi2kJ83vCLBXPZoMdgNowwwqd7vtxNXg2DVrbL14MeHOgWwq5eplUGWcMhjNUV6a-a51VF9_Gw7I-rA/s72-c/bgImageCode.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-2990351770430385312</guid><pubDate>Sun, 07 Feb 2016 04:51:00 +0000</pubDate><atom:updated>2016-02-27T18:33:21.438-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Forms</title><description>Forms are using to post Data to one server. &amp;nbsp;We can target the destination page in FORM tag itself, where the data need to get posted!. &amp;nbsp;Form required many elements to post the Data like INPUT (text, checkbox, radio), TEXTAREA, SELECT, IMG, etc,&lt;br /&gt;
&lt;br /&gt;
Basically FORM has two types of method to post the data.&lt;br /&gt;
1. GET Method&lt;br /&gt;
2. POST Method&lt;br /&gt;
&lt;b&gt;&lt;u&gt;&lt;br /&gt;&lt;/u&gt;&lt;/b&gt;
&lt;b&gt;&lt;u&gt;1. GET Method&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
By using this method all the data which means all input field TextBox, DropDown, TextArea, Checkbox, Radio button etc., all the values will get clubed together and post in the URL (Target page). &amp;nbsp;This method is Unsecure and Limitation in terms of URL Length. &amp;nbsp;We can submit a form with huge data.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;When we should not use GET Method?&lt;/b&gt;&lt;br /&gt;
We should not use in Login, Change Password screen etc., like some confidential data related screen, because if the data is posted in the URL and this will be visible to the user as well as advantage to the hackers.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Simple example,&lt;/b&gt; If the data is posted in the URL, this URL stored in browser history. &amp;nbsp;If you didnt cleared the browse history, other persons can able to see your confidential information and they can do malpractice.&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;When can we use GET Method?&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
We can use GET method where it won't create problem to show some data in the screen.&lt;br /&gt;
Example: Pagination, Bread Crumbs, Search result etc.,&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;2. POST Method&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
By Using Post method, it is almost similar to GET Method. &amp;nbsp;Only difference, it will post the data by hidden. &amp;nbsp;Also there is no restriction to post the data using POST method. &amp;nbsp;Post data size is Unlimited!!&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Source Code:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDpgQrdJr6ZDBfjSLiA5b_CTDI2J5p1LQIM3qMkC6Prn3JYkuv5aO8b012PgVuZx_5VsbKfg4zuQ3X2J9OljkzWOR9krPbXdNzvoxqnCxf1P-cteuS5_wr9QyuBDRzE6QK9M_bRQ0kx8E/s1600/FormCode.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="171" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDpgQrdJr6ZDBfjSLiA5b_CTDI2J5p1LQIM3qMkC6Prn3JYkuv5aO8b012PgVuZx_5VsbKfg4zuQ3X2J9OljkzWOR9krPbXdNzvoxqnCxf1P-cteuS5_wr9QyuBDRzE6QK9M_bRQ0kx8E/s640/FormCode.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;b&gt;Output:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgToiYwO4ciYptSVdW054Y0MCO0c4SO8AXJiQf6KHhjj5unvJSu_pss_omJjgvtV3_LmUQxHpNFcdoCduHc0WmxJjOkd7fHT6p1lfD-DZPF_SegHu4HWq85vCGLQgxvonjmwIZA4tAu48U/s1600/FormOutput.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="165" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgToiYwO4ciYptSVdW054Y0MCO0c4SO8AXJiQf6KHhjj5unvJSu_pss_omJjgvtV3_LmUQxHpNFcdoCduHc0WmxJjOkd7fHT6p1lfD-DZPF_SegHu4HWq85vCGLQgxvonjmwIZA4tAu48U/s400/FormOutput.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;a href="http://www.w3schools.com/html/html_forms.asp"&gt;Reference for More Details&lt;/a&gt;..&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/forms.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDpgQrdJr6ZDBfjSLiA5b_CTDI2J5p1LQIM3qMkC6Prn3JYkuv5aO8b012PgVuZx_5VsbKfg4zuQ3X2J9OljkzWOR9krPbXdNzvoxqnCxf1P-cteuS5_wr9QyuBDRzE6QK9M_bRQ0kx8E/s72-c/FormCode.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-6933013687614340040</guid><pubDate>Sun, 07 Feb 2016 04:49:00 +0000</pubDate><atom:updated>2016-03-05T02:50:11.848-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Image maps</title><description>&lt;div style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
Use the &lt;b&gt;&amp;lt; map &amp;gt;&lt;/b&gt; tag to use an image-map.&amp;nbsp;&lt;/div&gt;
&lt;div style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
An image-map is an simply image with clickable areas.&lt;/div&gt;
&lt;div style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
The &amp;lt; map &amp;gt; tag contains a number of &amp;lt; area &amp;gt; tags, that defines the clickable areas in the image-map:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgS5-sOY_gb5IffG6U75ouTqPb4jgLWDm6KLOJONww6RrlcAZ1xuAR3T-4iBR04R3eME79K_YXj6c7Bd2F4RO2VY4YTKQUyQSeoDjQ3jzk-IbQQaipkZZ8886-Tfz_80VLaM3BtpfV_xU4/s1600/areaCoordinates.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="276" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgS5-sOY_gb5IffG6U75ouTqPb4jgLWDm6KLOJONww6RrlcAZ1xuAR3T-4iBR04R3eME79K_YXj6c7Bd2F4RO2VY4YTKQUyQSeoDjQ3jzk-IbQQaipkZZ8886-Tfz_80VLaM3BtpfV_xU4/s640/areaCoordinates.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
&lt;br /&gt;
&lt;b&gt;Source:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWYHQMsSK72dmdnvUwd8_KwRZKk_mMKlRHWZh4WBXEymWGyW4RIXDuGEYxtiisAeyRhWCF_zm3Ky2T7LFjrQ6fg2HN2Yn77zTCBggFf3h1VAdagLad678YimLe-etDKDSS_uzfco8PRRY/s1600/imagemapCode.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="236" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWYHQMsSK72dmdnvUwd8_KwRZKk_mMKlRHWZh4WBXEymWGyW4RIXDuGEYxtiisAeyRhWCF_zm3Ky2T7LFjrQ6fg2HN2Yn77zTCBggFf3h1VAdagLad678YimLe-etDKDSS_uzfco8PRRY/s640/imagemapCode.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Output:&lt;/b&gt;&lt;br /&gt;
(mouse hover on first image area i.e. Sun), on click it will take us into sun.htm webpage.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsrLKp2RsYGZ69gBTiG5SkmDpAlSZ9oOBEQz9EXN47G5szqU_zEOlPiWara5GDwRHK6ujLTQqVo6UbOOJvgwb64O8KPQFS28o9NPBnawvIiNa1bty2A60XH0DGBprwTzpnkORPDDKd53Q/s1600/imagehoveronSun.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="178" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsrLKp2RsYGZ69gBTiG5SkmDpAlSZ9oOBEQz9EXN47G5szqU_zEOlPiWara5GDwRHK6ujLTQqVo6UbOOJvgwb64O8KPQFS28o9NPBnawvIiNa1bty2A60XH0DGBprwTzpnkORPDDKd53Q/s400/imagehoveronSun.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
(mouse hover on second image area i.e. Mercury), on click it will take us into mercury.htm webpage.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinbnlVSXC5LIZmG5W7oCJYcaDCCFUUzQ5GsqAhu6HPdvH0bRkPXwJ3OE-IiAEeyYSsr4K_8nSs7T-Kgdsx3jmvv9sho-kTzyy9hQ-frowzLKrlasuWcLU_yyVBVZrpmBYkmKZonwjhgBw/s1600/imagehoveronmecury.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="173" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEinbnlVSXC5LIZmG5W7oCJYcaDCCFUUzQ5GsqAhu6HPdvH0bRkPXwJ3OE-IiAEeyYSsr4K_8nSs7T-Kgdsx3jmvv9sho-kTzyy9hQ-frowzLKrlasuWcLU_yyVBVZrpmBYkmKZonwjhgBw/s400/imagehoveronmecury.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
(mouse hover on third image area i.e. Venus), on click it will take us into venus.htm webpage.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKDU7vgbFmg8uSnvCmSau7mWl7TPHpMtWKVypnpt6kvpYjhyphenhyphenDNdhzaFAlfO0-O0_Ej3N_JLHxVdEjBpN3Jgw5nYr2eDXLEx9Bgp4p-w6h7qIrqDsvmoIyWBqTvVXCxglrbvf5GmbV_DOU/s1600/imagehoveronvenus.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="181" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKDU7vgbFmg8uSnvCmSau7mWl7TPHpMtWKVypnpt6kvpYjhyphenhyphenDNdhzaFAlfO0-O0_Ej3N_JLHxVdEjBpN3Jgw5nYr2eDXLEx9Bgp4p-w6h7qIrqDsvmoIyWBqTvVXCxglrbvf5GmbV_DOU/s400/imagehoveronvenus.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://evergreenphp.blogspot.com/2016/02/image-maps.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgS5-sOY_gb5IffG6U75ouTqPb4jgLWDm6KLOJONww6RrlcAZ1xuAR3T-4iBR04R3eME79K_YXj6c7Bd2F4RO2VY4YTKQUyQSeoDjQ3jzk-IbQQaipkZZ8886-Tfz_80VLaM3BtpfV_xU4/s72-c/areaCoordinates.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-2488335284874101511</guid><pubDate>Sun, 07 Feb 2016 04:45:00 +0000</pubDate><atom:updated>2016-03-05T02:14:45.480-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Images</title><description>Images otherwise called as Graphics. &amp;nbsp; To Add images into a web pages we have to add &lt;b&gt;&amp;lt; img /&amp;gt;&lt;/b&gt; tag.&lt;br /&gt;
&lt;br /&gt;
To add width &amp;amp; height of a image tag using multiple ways.&lt;br /&gt;
1. Image attribute height &amp;amp; width&lt;br /&gt;
2. Inline CSS height &amp;amp; width&lt;br /&gt;
3. Internal CSS height &amp;amp; width&lt;br /&gt;
&lt;br /&gt;
In the following example you can see all the examples with output.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Source:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggREPfWJN5jdJ3zUqFDfWN-562wPMwKhhnb4yFT-7yDAXjwxQj7psa-pGsSqmkVuD_hw6ilrS497eGML5yoqx6lL3H0JzdoiTKfu5KSx6tEjZ3WJk4oeHYRNWtZkSRvle7eXrLxZCShG4/s1600/ImagetagSource.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="401" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggREPfWJN5jdJ3zUqFDfWN-562wPMwKhhnb4yFT-7yDAXjwxQj7psa-pGsSqmkVuD_hw6ilrS497eGML5yoqx6lL3H0JzdoiTKfu5KSx6tEjZ3WJk4oeHYRNWtZkSRvle7eXrLxZCShG4/s640/ImagetagSource.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;Output:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjyAJAp_ILgEHeSz2OmTNg9AtmZT7tb67Q75Dny_UZLsCaWGLH1NLNNoECC4_4OMIRaRUjcpLJ43fWEbG9uSbJje0IrNpFQuNC1O6_RSHTisbZ7eIbXTKA0smD2YMipeSzL7K99eVjMXsc/s1600/ImagetagOuput.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjyAJAp_ILgEHeSz2OmTNg9AtmZT7tb67Q75Dny_UZLsCaWGLH1NLNNoECC4_4OMIRaRUjcpLJ43fWEbG9uSbJje0IrNpFQuNC1O6_RSHTisbZ7eIbXTKA0smD2YMipeSzL7K99eVjMXsc/s400/ImagetagOuput.jpg" width="227" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/images-and-hyperlink-anchors.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggREPfWJN5jdJ3zUqFDfWN-562wPMwKhhnb4yFT-7yDAXjwxQj7psa-pGsSqmkVuD_hw6ilrS497eGML5yoqx6lL3H0JzdoiTKfu5KSx6tEjZ3WJk4oeHYRNWtZkSRvle7eXrLxZCShG4/s72-c/ImagetagSource.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-7351086146504912632</guid><pubDate>Sun, 07 Feb 2016 04:42:00 +0000</pubDate><atom:updated>2016-02-27T06:35:08.045-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Directory Lists</title><description>&lt;strong&gt;Directory List&lt;/strong&gt; is nothing but a combination of Ordered and Unordered list tags in HTML.&lt;br /&gt;
&lt;br /&gt;
Okay, &lt;strong&gt;What is Directory List in a Computer?&lt;/strong&gt;&lt;br /&gt;
We usually say like.&amp;nbsp; Directory is a collection of folders and files.&amp;nbsp; Sometimes folder will again have a sub-folder.&amp;nbsp; Sub-folder will again files or folders and this will keep on go.. By this same approach directory are li tags and sub-directories are ul+li and etc.,&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Source Code:&lt;/strong&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvvQmNh3NI0jaVOXdy16Ye75Oi659naLKMvRdNB1JbWSpCMeTHeifNil9C4GtzsynHff5yR-xcZCcya5sQLgJdaZhgm7nwQeH2YRH2_Vc_xd2IU2GORUAc8DQ6hMrlkHc-99hvqz5LQzg/s1600/DirectoryList1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="348" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvvQmNh3NI0jaVOXdy16Ye75Oi659naLKMvRdNB1JbWSpCMeTHeifNil9C4GtzsynHff5yR-xcZCcya5sQLgJdaZhgm7nwQeH2YRH2_Vc_xd2IU2GORUAc8DQ6hMrlkHc-99hvqz5LQzg/s640/DirectoryList1.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhibpGBdQ8ya1-ULKO7APJhyU2D5pzKFQw2r8WUxDgoo1TWCWl6y_YsH5R1KgLkc8K6eBGaRBDyl_gP0p8S4FdwQlTOlulyj8tfrHc7G0sDFOSZGZVAyP9UXzwqIj12E4FxcyGrF3CMMjs/s1600/DirectoryList2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="280" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhibpGBdQ8ya1-ULKO7APJhyU2D5pzKFQw2r8WUxDgoo1TWCWl6y_YsH5R1KgLkc8K6eBGaRBDyl_gP0p8S4FdwQlTOlulyj8tfrHc7G0sDFOSZGZVAyP9UXzwqIj12E4FxcyGrF3CMMjs/s400/DirectoryList2.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;O&lt;/strong&gt;&lt;strong&gt;utput:&lt;/strong&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjm0pisrsCSX7VnBq88pwPO6725d55gPu7Jdb8uNuuGuIbqQM9ceJjpt9sXFIF2UC946vPtKfC-N-Ae2XAPW4TogH2yqiQTHeMQQEWxcWtzzD0LGzG-rUJTLmq191agwLPvk6bOjtiWUb4/s1600/DirectoryListOutput.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="328" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjm0pisrsCSX7VnBq88pwPO6725d55gPu7Jdb8uNuuGuIbqQM9ceJjpt9sXFIF2UC946vPtKfC-N-Ae2XAPW4TogH2yqiQTHeMQQEWxcWtzzD0LGzG-rUJTLmq191agwLPvk6bOjtiWUb4/s640/DirectoryListOutput.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/directory-lists.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvvQmNh3NI0jaVOXdy16Ye75Oi659naLKMvRdNB1JbWSpCMeTHeifNil9C4GtzsynHff5yR-xcZCcya5sQLgJdaZhgm7nwQeH2YRH2_Vc_xd2IU2GORUAc8DQ6hMrlkHc-99hvqz5LQzg/s72-c/DirectoryList1.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-521988786202581614</guid><pubDate>Sun, 07 Feb 2016 04:41:00 +0000</pubDate><atom:updated>2016-02-27T06:35:43.793-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Using UnOrdered Lists</title><description>&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Explanation:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;Unordered List is a type of List in HTML.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;The Word "UnOrdered" gives direct meaning of HTML list displayed without Order in the form, but using some symbols like disc, circle.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;An Unordered list starts with the&amp;nbsp;&lt;/span&gt;&lt;strong style="background-color: white; box-sizing: border-box; font-family: verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&amp;lt; ul &amp;gt;&lt;/strong&gt;&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&amp;nbsp;tag. Each list item starts with the&amp;nbsp;&lt;/span&gt;&lt;strong style="background-color: white; box-sizing: border-box; font-family: verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&amp;lt; li &amp;gt;&lt;/strong&gt;&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&amp;nbsp;tag&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgC6Iatnat1UaS6u9xAP45OZFWrATuP0O6xcvhcLggBO0k6SMWBNNzUyo18Kb7-TLhEnelQLi4T8V9rxcClktY2kCm_CH3o3Vq1k7ZM-cCgOfOseisDZ8QBsvWrs_w-z0FNd3G4lufq5BY/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="228" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgC6Iatnat1UaS6u9xAP45OZFWrATuP0O6xcvhcLggBO0k6SMWBNNzUyo18Kb7-TLhEnelQLi4T8V9rxcClktY2kCm_CH3o3Vq1k7ZM-cCgOfOseisDZ8QBsvWrs_w-z0FNd3G4lufq5BY/s640/Untitled.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Source Code:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj9F8acrN65bsnT0ImckW5xc1wQ-GmT5uml0KNtl7Wt1spd0o78MRdaw7C4ASzaCRPSDQLwTDTVgqq3GmXfk4p-vbOSQRtb-ZOhiFIoWpvOSauwCvZMHOCXw9m15mtTIXNT8kVKBMuqLXY/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj9F8acrN65bsnT0ImckW5xc1wQ-GmT5uml0KNtl7Wt1spd0o78MRdaw7C4ASzaCRPSDQLwTDTVgqq3GmXfk4p-vbOSQRtb-ZOhiFIoWpvOSauwCvZMHOCXw9m15mtTIXNT8kVKBMuqLXY/s400/Untitled.jpg" width="340" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Output:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnSsNacL1fRsRn3tHyHkjv_gmB-EPd4bJ38pUWmv8-zg3aAwB34ki9ZU9wyIdcn72tP9plw3lFzryekSG-unqGfUJxqhjVfDdwZhC75OK_9eGFI-mg-M6-Fym7SZc6WjTnV4InCdhW4d0/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="265" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnSsNacL1fRsRn3tHyHkjv_gmB-EPd4bJ38pUWmv8-zg3aAwB34ki9ZU9wyIdcn72tP9plw3lFzryekSG-unqGfUJxqhjVfDdwZhC75OK_9eGFI-mg-M6-Fym7SZc6WjTnV4InCdhW4d0/s640/Untitled.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/using-unordered-lists.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgC6Iatnat1UaS6u9xAP45OZFWrATuP0O6xcvhcLggBO0k6SMWBNNzUyo18Kb7-TLhEnelQLi4T8V9rxcClktY2kCm_CH3o3Vq1k7ZM-cCgOfOseisDZ8QBsvWrs_w-z0FNd3G4lufq5BY/s72-c/Untitled.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-5776618222531609761</guid><pubDate>Sun, 07 Feb 2016 04:40:00 +0000</pubDate><atom:updated>2016-02-27T06:35:52.412-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Using Ordered List</title><description>&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Explanation:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;Ordered List is a type of List in HTML.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;The Word "Ordered" gives direct meaning of HTML list displayed in Ordered form.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;An ordered list starts with the&amp;nbsp;&lt;/span&gt;&lt;strong style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&amp;lt; ol &amp;gt;&lt;/strong&gt;&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&amp;nbsp;tag. Each list item starts with the&amp;nbsp;&lt;/span&gt;&lt;strong style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&amp;lt; li &amp;gt;&lt;/strong&gt;&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&amp;nbsp;tag&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2BIsxAi6yrsPBMcIdIfx_gA4n255fvmrtPXHHE1MYMUS4d-WS-eyF0oQSJI4bZ4OaIFT1pBF9L3phQxEeAQX6aTS6ItmIhl2KFl5C3nqxicLQYzNzDbARIc0LTxBrZoBO03-HohHKl5c/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="212" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2BIsxAi6yrsPBMcIdIfx_gA4n255fvmrtPXHHE1MYMUS4d-WS-eyF0oQSJI4bZ4OaIFT1pBF9L3phQxEeAQX6aTS6ItmIhl2KFl5C3nqxicLQYzNzDbARIc0LTxBrZoBO03-HohHKl5c/s400/Untitled.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpZLcIW06-7wBL-Y1lGNXA4yvmvXUfs0PfPIpRcfQK5g8_sAUP_s-sPph0jgnGAqgmOPZ-MY_A7QzgIin5QgyD3zih5U7c72psxumo86nc0PtvBYflSR_GV2DkuW15LKQCq9YmapDtKd4/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;br /&gt;&lt;/a&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpZLcIW06-7wBL-Y1lGNXA4yvmvXUfs0PfPIpRcfQK5g8_sAUP_s-sPph0jgnGAqgmOPZ-MY_A7QzgIin5QgyD3zih5U7c72psxumo86nc0PtvBYflSR_GV2DkuW15LKQCq9YmapDtKd4/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;br /&gt;&lt;/a&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpZLcIW06-7wBL-Y1lGNXA4yvmvXUfs0PfPIpRcfQK5g8_sAUP_s-sPph0jgnGAqgmOPZ-MY_A7QzgIin5QgyD3zih5U7c72psxumo86nc0PtvBYflSR_GV2DkuW15LKQCq9YmapDtKd4/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpZLcIW06-7wBL-Y1lGNXA4yvmvXUfs0PfPIpRcfQK5g8_sAUP_s-sPph0jgnGAqgmOPZ-MY_A7QzgIin5QgyD3zih5U7c72psxumo86nc0PtvBYflSR_GV2DkuW15LKQCq9YmapDtKd4/s400/Untitled.jpg" width="292" /&gt;&lt;/a&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpZLcIW06-7wBL-Y1lGNXA4yvmvXUfs0PfPIpRcfQK5g8_sAUP_s-sPph0jgnGAqgmOPZ-MY_A7QzgIin5QgyD3zih5U7c72psxumo86nc0PtvBYflSR_GV2DkuW15LKQCq9YmapDtKd4/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Output&lt;/b&gt;&lt;/span&gt;&lt;b style="color: #09111a; font-family: verdana, arial, sans-serif; font-size: 13px; line-height: 16.9px;"&gt;:&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwFJfeCNAppBsUiC0zge0jiYx1MVK35OKMFKdQ9HT37a3Cc8xcBenSRXeijYdhrb39QkeGifzo0H6OrOhPhf-a9zY58gwcSujOoWqbXP7F58i_IczzuUbM4GPn0CQJFuYLAVb3D4m1ER8/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="165" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwFJfeCNAppBsUiC0zge0jiYx1MVK35OKMFKdQ9HT37a3Cc8xcBenSRXeijYdhrb39QkeGifzo0H6OrOhPhf-a9zY58gwcSujOoWqbXP7F58i_IczzuUbM4GPn0CQJFuYLAVb3D4m1ER8/s400/Untitled.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/using-ordered-list.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2BIsxAi6yrsPBMcIdIfx_gA4n255fvmrtPXHHE1MYMUS4d-WS-eyF0oQSJI4bZ4OaIFT1pBF9L3phQxEeAQX6aTS6ItmIhl2KFl5C3nqxicLQYzNzDbARIc0LTxBrZoBO03-HohHKl5c/s72-c/Untitled.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-1850485510113445974</guid><pubDate>Sun, 07 Feb 2016 04:39:00 +0000</pubDate><atom:updated>2016-02-27T06:36:01.349-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Displaying Text in Lists</title><description>&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Explanation:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;In HTML List we can use any information like Text, Image, Link etc.,&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;Now, we focus on how to display text in a List?&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Source Code:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgab0xrpRwIOzX3rzAt7E40EpP2pwpeyLuvDsdyHDtKsT_CbTdiEdvvgiuj-JKYuytopTFqCCXI25tw1KuwQrQHvIWiNpW26lnJfhXmublDBtLX4Qjc0POHk4nQQVYQP0yhp0fgy3jD5cI/s1600/Untitled.jpg" imageanchor="1" style="clear: left; display: inline !important; margin-bottom: 1em; margin-right: 1em; text-align: center;"&gt;&lt;img border="0" height="400" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgab0xrpRwIOzX3rzAt7E40EpP2pwpeyLuvDsdyHDtKsT_CbTdiEdvvgiuj-JKYuytopTFqCCXI25tw1KuwQrQHvIWiNpW26lnJfhXmublDBtLX4Qjc0POHk4nQQVYQP0yhp0fgy3jD5cI/s400/Untitled.jpg" width="311" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Output:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJNflxlmoShqpfgoaC9vCkwNwvQc5CrrZG9GuSGhSM4XrLrU3KN1InqV9pM1yqoH6i43nw6YE80UE3TEI96XMwSFgpvv-fjIuEooAOo0unKZQxMbDyJhDxoaQ6YmrhKPFqMIa7QiomHMA/s1600/Untitled.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJNflxlmoShqpfgoaC9vCkwNwvQc5CrrZG9GuSGhSM4XrLrU3KN1InqV9pM1yqoH6i43nw6YE80UE3TEI96XMwSFgpvv-fjIuEooAOo0unKZQxMbDyJhDxoaQ6YmrhKPFqMIa7QiomHMA/s1600/Untitled.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/displaying-text-in-lists.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgab0xrpRwIOzX3rzAt7E40EpP2pwpeyLuvDsdyHDtKsT_CbTdiEdvvgiuj-JKYuytopTFqCCXI25tw1KuwQrQHvIWiNpW26lnJfhXmublDBtLX4Qjc0POHk4nQQVYQP0yhp0fgy3jD5cI/s72-c/Untitled.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-3326730045344040757</guid><pubDate>Sun, 07 Feb 2016 04:38:00 +0000</pubDate><atom:updated>2016-02-27T06:35:35.212-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>List in HTML</title><description>&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Explanation:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;The Word "List" gives direct meaning of Listing out some information in a Webpage in either Ordered List or UnOrdered List.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;b&gt;Two Types List tags in HTML:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;1. Ordered List&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;2. Unordered List&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #09111a; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif;"&gt;&lt;span style="background-color: white; font-size: 13px; line-height: 16.9px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
</description><link>http://evergreenphp.blogspot.com/2016/02/list-in-html.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-5629586824115842710</guid><pubDate>Sun, 07 Feb 2016 04:20:00 +0000</pubDate><atom:updated>2016-02-27T06:34:50.151-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Elementary tags in HTML</title><description>&lt;b&gt;Explanation:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
HTML provides a set of "tags" that are embedded in documents to be displayed by a Web browser. &lt;br /&gt;
&lt;br /&gt;
HTML tags usually, but not always, come in pairs, an opening tag and a closing tag. &amp;nbsp;Tags are enclosed in the 'greater than' and 'less than' symbols, "&amp;lt;" &amp;nbsp;"&amp;gt;". The opening tag of a pair of tags looks like this: . The closing tag of a pair looks like this:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;What are the Important HTML tags?&lt;/b&gt;&lt;br /&gt;
All the Tags are important but few of the tags are most frequently used by the Web Developers. &amp;nbsp;As follows:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiicR71E3ffAsc4mkdz7ttgVWLELUe0-Yk0nOPzv4na2QHGaxJDZol9oW2WgsfnWSWukbP1Xu6uHD_Wd6rv4CjIertUgGTqW85KEZPVj-Me8N8-IGv_u0aO8BhwIL5Lb4VpYmQnBeZ6d8Y/s1600/Untitled.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiicR71E3ffAsc4mkdz7ttgVWLELUe0-Yk0nOPzv4na2QHGaxJDZol9oW2WgsfnWSWukbP1Xu6uHD_Wd6rv4CjIertUgGTqW85KEZPVj-Me8N8-IGv_u0aO8BhwIL5Lb4VpYmQnBeZ6d8Y/s1600/Untitled.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/elementary-tags-in-html.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiicR71E3ffAsc4mkdz7ttgVWLELUe0-Yk0nOPzv4na2QHGaxJDZol9oW2WgsfnWSWukbP1Xu6uHD_Wd6rv4CjIertUgGTqW85KEZPVj-Me8N8-IGv_u0aO8BhwIL5Lb4VpYmQnBeZ6d8Y/s72-c/Untitled.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-911162437389812721</guid><pubDate>Sun, 07 Feb 2016 03:57:00 +0000</pubDate><atom:updated>2016-02-27T06:34:39.221-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Introduction to HTML</title><description>&lt;span style="font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;"&gt;&lt;b&gt;Explanation:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;"&gt;HTML = &lt;b&gt;H&lt;/b&gt;yper&lt;b&gt;T&lt;/b&gt;ext &lt;b&gt;M&lt;/b&gt;arkup &lt;b&gt;L&lt;/b&gt;anguage&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;"&gt;HyperText &lt;span style="background-color: white; line-height: 18.2px;"&gt;&amp;nbsp;is a text which contains links to other texts. &amp;nbsp;&lt;/span&gt;The term was coined by&amp;nbsp;&lt;a href="https://www.w3.org/Xanadu.html#Nelson" name="1"&gt;Ted Nelson&lt;/a&gt;&amp;nbsp;around 1965. &amp;nbsp;&lt;/span&gt;&lt;span style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px;"&gt;The first publicly available of HTML was a document called "HTML Tags", on the Internet by Tim Berners-Lee in late 1991.&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8YkZZIjNNxj4pDK2ITPkUUpEG3Da4OlKb2Nogz7W_cUHIka85TZNbGH83xTstyPqpPWtx1IJo95Nk7sVVWh2OqZMWQdXyznhAkyZjoHGxvj_O8Bv-jGLl3LIIC83S9uBXRO6SZtutXGU/s1600/Untitled.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="298" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8YkZZIjNNxj4pDK2ITPkUUpEG3Da4OlKb2Nogz7W_cUHIka85TZNbGH83xTstyPqpPWtx1IJo95Nk7sVVWh2OqZMWQdXyznhAkyZjoHGxvj_O8Bv-jGLl3LIIC83S9uBXRO6SZtutXGU/s320/Untitled.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="font-family: &amp;quot;arial&amp;quot; , &amp;quot;helvetica&amp;quot; , sans-serif;"&gt;Markup&amp;nbsp;&lt;span style="background-color: white; line-height: 18.2px;"&gt;refers to the sequence of characters or other symbols that we insert at certain places in a text.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;In Short, HTML is a language developed for Web and Website oriented purpose.&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;&lt;b&gt;What are the possible extension for HTML?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;a .html (ex: student.html)&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;b .htm (ex: lecturer.htm)&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;&lt;b&gt;What is the Media type for HTML?&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;text/html&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="background-color: white; font-family: &amp;quot;arial&amp;quot; , sans-serif; line-height: 18.2px;"&gt;&lt;br /&gt;&lt;/span&gt;
</description><link>http://evergreenphp.blogspot.com/2016/02/introduction-to-html.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8YkZZIjNNxj4pDK2ITPkUUpEG3Da4OlKb2Nogz7W_cUHIka85TZNbGH83xTstyPqpPWtx1IJo95Nk7sVVWh2OqZMWQdXyznhAkyZjoHGxvj_O8Bv-jGLl3LIIC83S9uBXRO6SZtutXGU/s72-c/Untitled.jpg" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-5133851800662649947</guid><pubDate>Sun, 07 Feb 2016 03:27:00 +0000</pubDate><atom:updated>2016-03-05T02:54:25.379-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit II</category><title>Web Design UNIT II</title><description>&lt;a href="http://evergreenphp.blogspot.jp/2016/02/introduction-to-html.html"&gt;Introduction to HTML&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.jp/2016/02/elementary-tags-in-html.html"&gt;Elementary tags in HTML&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.jp/2016/02/list-in-html.html"&gt;List in HTML&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.com/2016/02/displaying-text-in-lists.html"&gt;Displaying Text in Lists&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.com/2016/02/using-ordered-list.html"&gt;Using Ordered List&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.com/2016/02/using-unordered-lists.html"&gt;Using UnOrdered Lists&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.com/2016/02/directory-lists.html"&gt;Directory Lists&lt;/a&gt;, Definition lists combining List Types Graphics and images, Format Graphics and HTML Documents, &lt;a href="http://evergreenphp.blogspot.jp/2016/02/images-and-hyperlink-anchors.html"&gt;Images &lt;/a&gt;and &lt;a href="http://evergreenphp.blogspot.jp/2016/03/hyperlink-anchors.html"&gt;Hyperlink anchors&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.com/2016/02/image-maps.html"&gt;Image maps&lt;/a&gt;, &lt;a href="http://www.w3schools.com/html/html_tables.asp"&gt;Tables&lt;/a&gt;, &lt;a href="http://www.w3schools.com/tags/tag_frame.asp"&gt;Frames&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.com/2016/02/forms.html"&gt;Forms&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.com/2016/02/background-graphics.html"&gt;Background Graphics&lt;/a&gt; and &lt;a href="http://evergreenphp.blogspot.com/2016/02/background-color.html"&gt;Background Color&lt;/a&gt;. </description><link>http://evergreenphp.blogspot.com/2016/02/web-design-unit-ii.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-1380020862539456247</guid><pubDate>Sat, 06 Feb 2016 17:29:00 +0000</pubDate><atom:updated>2016-02-27T06:36:16.749-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit III</category><title>External Style sheets</title><description>&lt;b&gt;Explanation:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
External Style Sheet is a type of CSS. &amp;nbsp;In External CSS, Style sheet are kept in a separate file with the collection of CLASS's and ID's. &amp;nbsp;&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , sans-serif; font-size: 15px; line-height: 22.5px;"&gt;The style sheet file must create with a .css extension. Example: kmcpgs.css, ArignarAnna.css etc.,&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;Why we need to use External and its purpose?&lt;/b&gt;&lt;br /&gt;
Purpose of External CSS is to keep all css code in a separate file. &amp;nbsp;Whenever we develop a Website with multiple web pages in that case Inline CSS &amp;amp; Internal CSS will increase the burden if we need to make a generic change in terms of color or background image etc. &amp;nbsp;By using External CSS, just we can modify a common file and it will reflect in all the web pages in one GO. &amp;nbsp;Or else we have to update each and every page it will increase our development time and inefficient way of maintaining a website.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Separate CSS file i.e. styles.css&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjN5e2U1quMCgtIdUQypT6tnlK9mMRTROvjMBLgK8yNM2QAml6xL3L1zoTEYCKcO1Z-WZaMK7hGiA6KFoq4Eel-KRUDjeVPiqhtHHpbZGzNYUCOYZGBdeYuKS4niecfAoWrnDQIfFqHrtU/s1600/inlinecss1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="312" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjN5e2U1quMCgtIdUQypT6tnlK9mMRTROvjMBLgK8yNM2QAml6xL3L1zoTEYCKcO1Z-WZaMK7hGiA6KFoq4Eel-KRUDjeVPiqhtHHpbZGzNYUCOYZGBdeYuKS4niecfAoWrnDQIfFqHrtU/s320/inlinecss1.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;Created a HTML page and linked the CSS file or path also possible.&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqndNEGs5MpdDSXvFLkaHH_4LLbGHFu-u7aJE__QeWutgBFtrnuZwO9qtgyON9C2SDXyjUBwKofg6XcWgj8jVrHfqlOj8X5SCPXGBY3RHtJ5lC1HZzlrlIygKdfHbkpTSrc4LI-1SOtYI/s1600/inlinecss1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="225" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqndNEGs5MpdDSXvFLkaHH_4LLbGHFu-u7aJE__QeWutgBFtrnuZwO9qtgyON9C2SDXyjUBwKofg6XcWgj8jVrHfqlOj8X5SCPXGBY3RHtJ5lC1HZzlrlIygKdfHbkpTSrc4LI-1SOtYI/s320/inlinecss1.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIPjLaS-BfuCYtimNXfHpVKKtHKUEPTHoraxYHI2PRk4u6GBZ-p3IeA8qUDcikr0onttIx2yiN3W61_SFVPKF4_OLbPPGUQVVUwVk1Fum6euR77DoF2Mc1hKI7-b-Fk6l9XSb_L_Fcbfw/s1600/inlinecss1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="209" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIPjLaS-BfuCYtimNXfHpVKKtHKUEPTHoraxYHI2PRk4u6GBZ-p3IeA8qUDcikr0onttIx2yiN3W61_SFVPKF4_OLbPPGUQVVUwVk1Fum6euR77DoF2Mc1hKI7-b-Fk6l9XSb_L_Fcbfw/s320/inlinecss1.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;br /&gt;
Additional&amp;nbsp;&lt;a href="http://www.w3schools.com/html/html_css.asp"&gt;Reference&lt;/a&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/external-style-sheets.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjN5e2U1quMCgtIdUQypT6tnlK9mMRTROvjMBLgK8yNM2QAml6xL3L1zoTEYCKcO1Z-WZaMK7hGiA6KFoq4Eel-KRUDjeVPiqhtHHpbZGzNYUCOYZGBdeYuKS4niecfAoWrnDQIfFqHrtU/s72-c/inlinecss1.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-8688672842027032146</guid><pubDate>Sat, 06 Feb 2016 17:03:00 +0000</pubDate><atom:updated>2016-02-27T06:36:26.552-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit III</category><title>Internal Style information</title><description>&lt;b&gt;Explanation:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Internal Style Sheet is a type of CSS. &amp;nbsp;Adding the Style Attribute or Attributes on a &amp;lt; style &amp;gt; element the HTML page. Style attribute(s) are clubbed together are named as either CLASS or ID. &lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;What is the difference between CLASS &amp;amp; ID in Style Sheet?&lt;/b&gt;&lt;br /&gt;
CLASS - any valid CSS name which starts with DOT (.) are class.&lt;br /&gt;
ID - any valid CSS name which starts with # are id.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;When can we use CLASS &amp;amp; ID?&lt;/b&gt;&lt;br /&gt;
Usage of CLASS - whenever a same style sheet is required in many places, in that case we have use it as class.&lt;br /&gt;
Usage of ID - whenever an unique style sheet is required in a webpage then we can go with id.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Example #1:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl80JuVZpY7m433gjFr0-GD8c1AD7LrrytdDpSuhhzb_5roLQ3OP1sTcrjRjz770-xSpTavudUuim-SF0lJi4JUKRWs_iL9Yw5yS0_zTteif9Sw4-GFgl-LtLmQlYDX2DU9kq_1210Khk/s1600/inlinecss1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="186" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl80JuVZpY7m433gjFr0-GD8c1AD7LrrytdDpSuhhzb_5roLQ3OP1sTcrjRjz770-xSpTavudUuim-SF0lJi4JUKRWs_iL9Yw5yS0_zTteif9Sw4-GFgl-LtLmQlYDX2DU9kq_1210Khk/s640/inlinecss1.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;Example #2:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIBpji1rXlVwEdbkhICymPL0alnjzrehpEPj8bvierQ59NRpyPcFcdzEW6-cCupQP0psfqiojSj3ORyKcg7UoOQrlh8XV3IkA83oGLDl_3jH-wTBP1gau2tOtqaQ_zeExwF0yRU9lZDaw/s1600/inlinecss1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="276" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIBpji1rXlVwEdbkhICymPL0alnjzrehpEPj8bvierQ59NRpyPcFcdzEW6-cCupQP0psfqiojSj3ORyKcg7UoOQrlh8XV3IkA83oGLDl_3jH-wTBP1gau2tOtqaQ_zeExwF0yRU9lZDaw/s640/inlinecss1.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
For Additional&amp;nbsp;&lt;a href="http://www.w3schools.com/html/html_css.asp"&gt;Reference&lt;/a&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/internal-style-information.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl80JuVZpY7m433gjFr0-GD8c1AD7LrrytdDpSuhhzb_5roLQ3OP1sTcrjRjz770-xSpTavudUuim-SF0lJi4JUKRWs_iL9Yw5yS0_zTteif9Sw4-GFgl-LtLmQlYDX2DU9kq_1210Khk/s72-c/inlinecss1.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-3114906696439517584</guid><pubDate>Sat, 06 Feb 2016 16:49:00 +0000</pubDate><atom:updated>2016-02-27T06:36:36.044-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit III</category><title>Inline Style information</title><description>&lt;b&gt;Explanation:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Inline Style Sheet is a type of CSS. &amp;nbsp;Adding the Style Attribute or Attributes on the HTML tag itself directly.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Example #1:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNhJAzlO90W0Ww-BzqWPjfbmupFTs3EJzV9xqpxYLSB_pTWF005VILmVL1AW7MJVPoxxU5XFWRAtBKct8uwEv1iVt6DKd2RJCJ_LqhrlW4n9LF2DppVHMebhnEREeNKYn5eBNZRoRLOgg/s1600/inlinecss1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="107" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNhJAzlO90W0Ww-BzqWPjfbmupFTs3EJzV9xqpxYLSB_pTWF005VILmVL1AW7MJVPoxxU5XFWRAtBKct8uwEv1iVt6DKd2RJCJ_LqhrlW4n9LF2DppVHMebhnEREeNKYn5eBNZRoRLOgg/s640/inlinecss1.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;Example #2:&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlAO0GbA311PnhAj2wXG3du314fnccjgIdExFv3jomihQbrVJvT0CDWr8d8Yv-Xzuow9MMdd32TWgh0shW7zjZkt_zyZO18oT6NH7fCoga-v7I1T_fx1LJ0UZ10mORHxJm8bdD8Cn0csw/s1600/inlinecss1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="169" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlAO0GbA311PnhAj2wXG3du314fnccjgIdExFv3jomihQbrVJvT0CDWr8d8Yv-Xzuow9MMdd32TWgh0shW7zjZkt_zyZO18oT6NH7fCoga-v7I1T_fx1LJ0UZ10mORHxJm8bdD8Cn0csw/s640/inlinecss1.jpg" width="640" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;br /&gt;
Additional&amp;nbsp;&lt;a href="http://www.w3schools.com/html/html_css.asp"&gt;Reference&lt;/a&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/inline-style-information.html</link><author>noreply@blogger.com (Unknown)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNhJAzlO90W0Ww-BzqWPjfbmupFTs3EJzV9xqpxYLSB_pTWF005VILmVL1AW7MJVPoxxU5XFWRAtBKct8uwEv1iVt6DKd2RJCJ_LqhrlW4n9LF2DppVHMebhnEREeNKYn5eBNZRoRLOgg/s72-c/inlinecss1.jpg" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-8636125927058838244</guid><pubDate>Sat, 06 Feb 2016 16:36:00 +0000</pubDate><atom:updated>2016-02-27T06:36:46.139-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit III</category><title>Introduction to style sheet</title><description>&lt;b&gt;Explanation:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Style Sheet otherwise called as CSS (Cascading Style Sheet).&lt;br /&gt;
CSS used to make a Website colorful and make it in a good look &amp;amp; feel.&lt;br /&gt;
&lt;br /&gt;
Website with only HTML = Website designed and looks like Plain text&lt;br /&gt;
Website with HTML + CSS = Better look&lt;br /&gt;
&lt;br /&gt;
&lt;div style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
CSS can be added to HTML elements in 3 ways:&lt;/div&gt;
&lt;ul style="background-color: white; box-sizing: border-box; font-family: Verdana, sans-serif; font-size: 15px; line-height: 22.5px;"&gt;
&lt;li style="box-sizing: border-box;"&gt;Inline - using a&amp;nbsp;&lt;strong style="box-sizing: border-box;"&gt;style attribute&lt;/strong&gt;&amp;nbsp;in HTML elements&lt;/li&gt;
&lt;li style="box-sizing: border-box;"&gt;Internal - using a&amp;nbsp;&lt;strong style="box-sizing: border-box;"&gt;&amp;lt; style &amp;gt; element&lt;/strong&gt;&amp;nbsp;anywhere in&amp;nbsp;the HTML&lt;/li&gt;
&lt;li style="box-sizing: border-box;"&gt;External - using one or more&amp;nbsp;&lt;strong style="box-sizing: border-box;"&gt;external CSS files&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;span style="background-color: white; color: #333333; font-family: &amp;quot;gill sans mt&amp;quot; , &amp;quot;gill sans&amp;quot; , &amp;quot;my gill sans&amp;quot; , sans-serif; font-size: 18.496px; line-height: 24.0448px; text-align: justify;"&gt;W3C has actively promoted the use of style sheets on the Web since 1994.&lt;/span&gt;&lt;/div&gt;
</description><link>http://evergreenphp.blogspot.com/2016/02/introduction-to-style-sheet.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-998942647640575327</guid><pubDate>Sat, 06 Feb 2016 16:01:00 +0000</pubDate><atom:updated>2016-02-27T06:36:54.816-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit III</category><title>Introduction to DHTML</title><description>&lt;b&gt;Explanation:&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
DHTML is an Advanced Version of HTML. Dynamic + HTML = DHTML. So, What is Dynamic?&amp;nbsp; to perform some interactive action or making animated webpages etc all come under the word DYNAMIC.&lt;br /&gt;
&lt;br /&gt;
How can we achieve the Dynamic? &amp;nbsp;By Using HTML + Javascript + CSS ( Cascading Style Sheet) + DOM (Document Object Model).&lt;br /&gt;
&lt;br /&gt;
DHTML is Case-Insensitive like HTML. So, we can write the code in both uppercase and lowercase or combination of cases, this is allowed in DHTML.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px;"&gt;DHTML was introduced by Microsoft with the release of Internet Explorer version 4.0 in 1997&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="background-color: white; font-family: &amp;quot;verdana&amp;quot; , &amp;quot;helvetica&amp;quot; , &amp;quot;arial&amp;quot; , sans-serif; font-size: 12px;"&gt;According to the World Wide Web Consortium (W3C):&lt;/span&gt;&lt;br /&gt;
&lt;i style="background-color: white; font-family: verdana, helvetica, arial, sans-serif; font-size: 12px;"&gt;"Dynamic HTML is a term used by some vendors to describe the combination of HTML, style sheets and scripts that allows documents to be animated."&lt;/i&gt;</description><link>http://evergreenphp.blogspot.com/2016/02/introduction-to-dhtml.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-1462887054981775726</guid><pubDate>Sat, 06 Feb 2016 15:32:00 +0000</pubDate><atom:updated>2016-02-06T19:23:01.277-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">A. Web Design Unit III</category><title>Web Design Unit III</title><description>&lt;a href="http://evergreenphp.blogspot.jp/2016/02/introduction-to-dhtml.html"&gt;Introduction to DHTML&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.jp/2016/02/introduction-to-style-sheet.html"&gt;Introduction to style sheet&lt;/a&gt;, Setting the default style sheet language, &lt;a href="http://evergreenphp.blogspot.jp/2016/02/inline-style-information.html"&gt;Inline Style information&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.jp/2016/02/internal-style-information.html"&gt;Internal Style information&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.jp/2016/02/external-style-sheets.html"&gt;External Style sheets&lt;/a&gt;, &lt;a href="http://evergreenphp.blogspot.jp/2016/02/introduction-to-style-sheet.html"&gt;Cascading Style Sheets&lt;/a&gt;.</description><link>http://evergreenphp.blogspot.com/2016/02/web-design-unit-iii.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-7659428637629015717</guid><pubDate>Tue, 07 Feb 2012 10:10:00 +0000</pubDate><atom:updated>2012-02-07T02:35:13.207-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">DHTML</category><category domain="http://www.blogger.com/atom/ns#">Difference between HTML</category><category domain="http://www.blogger.com/atom/ns#">HTML5?</category><category domain="http://www.blogger.com/atom/ns#">XHTML</category><title>What is the difference between HTML, XHTML, DHTML, HTML5?</title><description>&lt;span style="font-weight: bold;"&gt;HTML:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;a. HTML is a &lt;span class="yshortcuts cs4-visible" id="lw_1328609036_0"&gt;markup language&lt;/span&gt; that is used to build static (non interactive and nonanimated) webpages.&lt;br /&gt;&lt;br /&gt;b. HTML is Case-Insensitive. So, we can write in both uppercase and lowercase or combination of cases, this is allowed in HTML&lt;br /&gt;&lt;br /&gt;c. No need of close tags for every opened tags in HTML&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;XHTML:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;a. XHTML is a stricter and cleaner version of HTML.&lt;br /&gt;&lt;br /&gt;b. HTML is Case-sensitive.&lt;br /&gt;&lt;br /&gt;c. Each and every opened tags must be closed in XHTML&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Example #1:&lt;/span&gt;&lt;span style="font-size:100%;"&gt; &lt;span style="font-style: italic; font-weight: bold;"&gt;XHTML Elements Must Be Properly Nested&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In HTML, some elements can be improperly nested within each other, like this:  &lt;div class="code notranslate"&gt;&lt;div&gt; &lt;b&gt;&lt;i&gt;This text is bold and italic&lt;/i&gt;&lt;/b&gt;&lt;i&gt;&lt;/i&gt;&lt;/div&gt;&lt;/div&gt;  &lt;p&gt;In XHTML, all elements must be properly nested within each other, like this:&lt;/p&gt;  &lt;div class="code notranslate"&gt;&lt;div&gt; &lt;b&gt;&lt;i&gt;This text is bold and italic&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Example #2: &lt;span style="font-style: italic;"&gt;Empty Elements Must Also Be Closed&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;p&gt;Empty elements must also be closed.&lt;/p&gt;&lt;span style="font-weight: bold;"&gt;This is wrong:&lt;/span&gt;&lt;div class="code notranslate"&gt;&lt;div&gt; &lt;div class="code notranslate"&gt;&lt;div&gt; A break: &amp;lt; br &amp;gt;&lt;br /&gt;A horizontal rule:&amp;lt; hr &amp;gt;&lt;br /&gt;An image: &amp;lt; img src="happy.gif" alt="Happy face" &amp;gt;&lt;/div&gt;&lt;/div&gt;  &lt;p style="font-weight: bold;"&gt;This is correct:&lt;/p&gt; &lt;div class="code notranslate"&gt;&lt;div&gt; A break: &amp;lt; br /&amp;gt;&lt;br /&gt;A horizontal rule: &amp;lt; hr /&amp;gt;&lt;br /&gt;An image: &amp;lt; img src="happy.gif" alt="Happy face"  / &amp;gt;&lt;/div&gt;&lt;/div&gt;&lt;h2&gt;&lt;span style="font-size:100%;"&gt;More XHTML Syntax Rules&lt;/span&gt;&lt;/h2&gt;  &lt;ul&gt;&lt;li&gt;Attribute names must be in &lt;b&gt;lower case&lt;/b&gt;&lt;/li&gt;&lt;li&gt;Attribute values must be &lt;b&gt; quoted&lt;/b&gt;&lt;/li&gt;&lt;li&gt;Attribute minimization is &lt;b&gt; forbidden&lt;/b&gt;&lt;/li&gt;&lt;li&gt;The XHTML DTD defines &lt;b&gt;mandatory&lt;/b&gt; elements&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;DHTML:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;a. DHTML is NOT a language.  DHTML is a term describing the art of making dynamic and interactive web pages.  DHTML combines HTML, JavaScript, the HTML DOM, and CSS.&lt;br /&gt;&lt;br /&gt;b. DHTML is Case-Insensitive like HTML. So, we can write in both uppercase and lowercase or combination of cases, this is allowed in DHTML&lt;br /&gt;&lt;br /&gt;c. No need of close tags for every opened tags in DHTML&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;HTML 5&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;New Elements&lt;/li&gt;&lt;li&gt;New Attributes&lt;/li&gt;&lt;li&gt;Full CSS3 Support&lt;/li&gt;&lt;li&gt;Video and Audio&lt;/li&gt;&lt;li&gt;2D/3D Graphics&lt;/li&gt;&lt;li&gt;Local Storage&lt;/li&gt;&lt;li&gt;Local SQL Database&lt;/li&gt;&lt;li&gt;Web Applications&lt;/li&gt;&lt;/ul&gt;</description><link>http://evergreenphp.blogspot.com/2012/02/what-is-difference-between-html-xhtml.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>139</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-3870466504311080350</guid><pubDate>Fri, 02 Dec 2011 20:05:00 +0000</pubDate><atom:updated>2011-12-02T12:07:33.561-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Payment gateways</category><title>Payment Gateways Collections</title><description>&lt;a href="https://docs.google.com/open?id=0B5T86lFri9A3NmNhYmY3YWQtNzNhZC00NzRmLWI4OTYtMTI4YWM2YWJhOTNh"&gt;Download Payment Gateways Sample Integration Coding&lt;/a&gt;</description><link>http://evergreenphp.blogspot.com/2011/12/payment-gateways-collections.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-8545769233362005472</guid><pubDate>Thu, 16 Jun 2011 14:00:00 +0000</pubDate><atom:updated>2011-06-16T07:01:28.673-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">FPDF issue</category><title>[SOLVED] Unicode/UTF-8 extension for FPDF issue</title><description>Use the below code and you can get the exact value in php as us saw in browser.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Code:&lt;/span&gt;&lt;br /&gt;$encode_data = iconv('UTF-8', 'windows-1252', $node_info-&gt;title);</description><link>http://evergreenphp.blogspot.com/2011/06/solved-unicodeutf-8-extension-for-fpdf.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1967188167917947149.post-994050864864079254</guid><pubDate>Fri, 29 Apr 2011 10:34:00 +0000</pubDate><atom:updated>2011-04-29T03:36:23.166-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Get IP Address</category><category domain="http://www.blogger.com/atom/ns#">Sample php code</category><title>Get IP Address using PHP</title><description>&lt;pre&gt;&lt;br /&gt;function get_ip_address() {&lt;br /&gt;    if (isset($_SERVER)) {&lt;br /&gt;      if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {&lt;br /&gt;        $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];&lt;br /&gt;      } elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {&lt;br /&gt;        $ip = $_SERVER['HTTP_CLIENT_IP'];&lt;br /&gt;      } else {&lt;br /&gt;        $ip = $_SERVER['REMOTE_ADDR'];&lt;br /&gt;      }&lt;br /&gt;    } else {&lt;br /&gt;      if (getenv('HTTP_X_FORWARDED_FOR')) {&lt;br /&gt;        $ip = getenv('HTTP_X_FORWARDED_FOR');&lt;br /&gt;      } elseif (getenv('HTTP_CLIENT_IP')) {&lt;br /&gt;        $ip = getenv('HTTP_CLIENT_IP');&lt;br /&gt;      } else {&lt;br /&gt;        $ip = getenv('REMOTE_ADDR');&lt;br /&gt;      }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    return $ip;&lt;br /&gt;  }&lt;br /&gt;&lt;/pre&gt;</description><link>http://evergreenphp.blogspot.com/2011/04/get-ip-address-using-php.html</link><author>noreply@blogger.com (Unknown)</author><thr:total>0</thr:total></item></channel></rss>