Will I Lose My Work If I Re-Install?



At times you might have problems with your Joomla, such as certain functionalities not functioning as they should. When that happens, you might be tempted to simply re-install Joomla.

The wonderful Joomla logo!
If that is the case, keep in mind that while this may fix the problems you encounter concerning the functionalities, this will also result in you losing any work you have done upto that point. Thus, instead of re-installing, give the below a try:

- Change your template to the default template to see if this changes anything. Many problems encountered are the result of faults in templates.

- Upload the Joomla files to your site to write over the old files. Sometimes there are corrupted files and everything could be fixed if you can replace that corrupted file with an uncorrupted version. But since you won't be able to determine which is the corrupted file (well, at least not the common user), you'll need to overwrite all of the files. However, do not FTP the installation folder. This will only affect the original Joomla files and will not touch any files that came with other packages (e.g. templates installed after installation will not disappear).

The fastest way to carry out the action presented above is to get your Joomla setup zip, take out the installation folder from it, upload the zip to your site and then extract the folder. This can all be done from cPanel, which I'm sure almost everyone has some familiarity with by now.
[Read More...]


How to Find Out What Template is Used on a Site



Sometimes you see a site and you're sure it's using Joomla.You really like the template being used and would like to know what the name of the template is, but the site contains no information on this.

One very simple trick you can try then is to view the source code of the site. This should be available from your browser's View menu. Once you view the source code, try to find which directory the template.css file is linked from. The name of the folder will generally give you the name of the template. If the name of the folder is not enough right away for you to get the whole name, make a google search for the folder name and I'm sure some information will be available on another site.
[Read More...]


Building a website




Free tutorial for beginners on how to choose a domain name and hosting for your website.

First of all: if you want to have your own website you have to know that you have to buy a domain name and hosting.

You can buy a domain name and hosting for example: from www.GoDaddy.com or from any hosting company in your area.

Second, you can develop your website locally on your computer, so you can build your website and then buy a domain name and hosting.

Note: I don't recommend using free hosting for your official website. If you want, you can use free hosting just for testing propose.


Before we start making the website lets talk about choosing a name (domain name) for your website.

Choosing a domain name for your own website before you start is better if you already have a logo. You can make or choose a template for your website based on the color of your logo.

When choosing a domain name for your website is better to choose one that is relevant to your activity and not your company's name.

For example your company name is ABCD and you make, for example, candles. Is better for you to have a domain name called www.candles.com then www.abcd.com.

Why not to choose for domain name your company's name when creating your own website?

Let's say you are a customer, wouldn't you search for candles, in our case, or for abcd, the company's name?

Don't get me wrong, if you are a company like Microsoft, Coca-Cola or some other giant in your domain, your website domain name could be the company's name and people will still find you.

Okay if your website domain name is more than one word I recommend you use dashes, because is better for website optimization and can be remembered easier. Here is an example: www.wedding-candles.com.

Now that we determined how you can choose a name for your website, let's view some techniques for creating a website.

     First, you can create a website like I describe in the articles: creating a html website or creating a css website.

     Second, you can download a free template or buy one and build your website based on that template.

Here I will show you how to create a website based on a free template.

Here is a list of website where you can download templates for your website:

     http://www.freecsstemplates.org/ - Free CSS Templates

     http://www.free-css-templates.com/ - Free CSS Templates

     http://www.free-css.com - CSS Resources

     http://www.freewebsitetemplates.com/ Website Templates.

     http://www.freewebtemplates.com/

Before we download a template and start building the website, we are going to talk about choosing the right image types for your website.

[Read More...]


Building My First WebSite - CSS Tutorial




Before Creating a WebSite with CSS you should have some knowledge of HMTL.

So if you haven't read my tutorial about HTML, you can click on Building a WebSite with HTML now.


1. What does CSS mean?

CSS stands for Cascading Style Sheets.

2. What does CSS do?

CSS defines how to display HTML elements, adds style to this elements.

3. How do we write CSS code?

To write a line of CSS code you need three things: a HTML element, a property and a value for that property.

Here is an example: h1 { color:red; }.  => Some H1 text.


4. How to include CSS in our WebSite?

There are two ways to include styles in your WebSite. The first method is to save your styles in external .css files. External style sheets enable you to change the appearance and layout of all the pages in a WebSite, just by editing one single file! Or you can write your CSS code directly into the HTML page.


Here are some example of Ways To Include CSS in a HTML page.

This code must be placed between the  tag.

Link to external file.



There are two ways to add style to HTML elements if we use external css file. You can use the attribute class or id.

1. ID atribute is used to specify a style for a single, unique element. We define it with a "#".

2. CLASS atribute allows you to set a particular style for any HTML elements with the same class. We define it with a ".".


Write code direct in page.


Inline style. Add style directly to specific HTML element.




As you can see, on the first line is the attribute "style" which value is the CSS code, the CSS property (font-size) and its value (16pt), the HTML element here being the tag.

Now we know what CSS means, how to write a CSS code line and how to add CSS to your website, so click on Building a WebSite with CSS to move forward.



[Read More...]


HTML Tutorial




Before we dive in and start learning HTML let's answer these questions.

1. What is HTML and what does it do?

HTML (Hyper Text Markup Language) it is a markup language for describing web pages.

2. How does HTML markup language works?

HTML uses markup tags to describe the web pages. This tags are usually called HTML tags or HTML elements.

3. How does HTML Tags works?

HTML tags normally come in pairs, the opening tag and the closing tag.

Here is an example and , this is the link tag.

4. What is a web page?

A web page is a document that contains HTML Tags and plain text. Web pages are read by web browser like Firefox. The browser does not display the tags, but uses the tags to interpret the content of the page.


Here is an example of a web page:


You can write the code in a plain text editor like notepad and save it as first_webpage.html (or file_name.html)

Ok, we have our first web page, now let's analyze the tags in the example.

     - the tag on line 1, tells the browser where to start and end the web page;


     - on line 2 is the head tag which defines information about the html document;


     - on the third line is the title tag which defines the title of your web page;


     - the tag, line 5, is where all the web page content goes;


     - on line 6 is the paragraph tag.



A short list of the most used HTML tags:

     tag- with this tag you can create a link.
As you can see I added title in the tag, which is responsible for the text that appears when you put your mouse over the link.


     tag - makes the text bold.

          Ex: Hello World  => Hello World

     tag - defines the document's body.

          Ex: - makes the page background color blue.

    
tag - defines a single line break.(yes this does not came in pair)

    
 tag- defines a section in a document.

     tag - defines the font face, size and color for text.

          Ex: Hello World   =>  Hello World

    
 tag - defines an HTML form for user input.
     This is the result :


     tag - let's you add an image to your web page.

          Ex: Text to display if can't show image.

    
  • tag - defines a list items.

        
      tag - defines an unordered list.

          
        tag - defines an ordered list.

                  Example:

             This is an ordered list:

             tag - defines a section in a document.

            
        tag - defines a table in a web page.

             tag - defines a table cell.

             tag - defines a row in a table.

                  Example:

             The result is a table with one row and two cells.

        Now that you found out what HTML means let's click on the following link to start building a website.


        [Read More...]


        CMS Based Website




        What's CMS (Content Management System)?

        A content management system (CMS) is a collection of procedures used to manage work flow in a collaborative environment.

        Here we are going to talk about WEB CSM. This is a software that keeps track of every piece of content on your Web site.
        WEB CMS are Joomla!, Drupal, PHP-Fusion and a lot more.

        Why use a CMS System to build your website?

        You can build a website much faster with a CMS System and the best part of a CMS website is that maintenance it is very easy since it does not requires almost no technical skill.
        On this website I'll talk especially about Joomla!, why? Because as you can see at the bottom of the page this website was made with Joomla!.

        What is Joomla?

        Joomla is an award-winning content management system (CMS), which enables you to build Web sites and powerful online applications. Many aspects, including its ease-of-use and extensibility, have made Joomla the most popular Web site software available. Best of all, Joomla is an open source solution that is freely available to everyone. (taken from joomla.org)

        Here is a list of other WEB CMS:


             Drupal is a free software package that allows an individual or a community of users to easily publish, manage and organize a wide variety of content on a website.

        PHP-Fusion is a light-weight open-source content management system (CMS) written in PHP4. It uses a mySQL database to store your site content and includes a simple yet comprehensive administration system.

        MODx Revolution is a powerful PHP Content Management Framework that plays nicely with custom code and helps you build sites faster and maintain them with ease.

        WebsiteBaker helps you to create the website you want: A free, easy and secure, flexible and extensible open source content management system (CMS).

        CMS Made Simple provides a fast and easy way to create a web site and manage its contents. Use it to make a home page for your family -- or your multinational corporation!

        If you want even more, you can take a look at opensourcecms.com or you can search on the web for open source cms.


        [Read More...]


        Web Building Tools





        Here is a webmaster list of tools, links and other things that can help you build, optimize and promote your website.

        Software

             Firefox -  the browser ;

             Firebug - this is an add-on for Firefox ;

             Page Speed - this is an add-on for Firefox/Firebug, this mean that you have to first install Firefox and Firebug. (Google page speed test)

             YSlow - another add-on for Firefox (Yahoo page speed test)

             Notepad++ - a free, open source, plain editor ;


             GIMP (GNU Image Manipulation Program) - free image editing software ;

           JCE Editor for Joomla!. This is a Content Editor for Joomla! that I recommand.

            RIOT - Radical Image Optimization Tool "is a free image optimizer that will let you to visually adjust compression parameters while keeping minimum filesize." - download here.

        Links

             W3C HTML Validation Service (this examines your HTML code to meet the W3C standards)

             The W3C CSS Validation Service (this examines your CSS code to meet the W3C standards)

             Bing Webmaster (Bing Webmaster Tools - add your website to Bing)
         

            Google Webmasters (Add your website to Google)
         

             Yahoo! Site Explorer (Add your website to Yahoo! - this is Yahoo! Webmaster Central)

        [Read More...]


        How to install Xampp - for Joomla






        XAMPP stands for X (for the four operating system supported) A (Apache) M (MySQL) P (PHP) P (Perl).


        "XAMPP is a, easy to install, Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use - just download, extract and start."


        Ok, so what does all of that mean? It means that xampp is a package that installs a web server in our computer with all the things we need to create a database, administrate it, run php scripts and much more.

        So for us to install it we have to download it. GO to http://www.apachefriends.org/en/xampp.html


        Click on XAMPP for Windows and scroll down a little.


        Now download the xampp setup by clicking on the exe link, save it somewhere in your computer and run it (double click on it).



        First thing before we click on the install button we should set the the path (Destination folder) where is going to be installed. I usually do not install xampp on the same partition where windows is installed.


        After installation is over a command prompt window starts for configuration. If you want shortcuts on start-menu and desktop type Y.


        To this option I recommend you to type Y.

         

        Type N. We do not need a portable version of Xampp. The propose of this tutorial is not how to install xampp in different ways.


        This is just info, so type enter(return key).



        The setup is over so type X to close the window.

        Click on the following link to configure xampp server for Joomla! installation.

        [Read More...]


        Search Engine Optimization (SEO)




        Search Engine Optimization (SEO) can be defined as the activity of making small modifications to parts of your Web Pages or whole Web Sites in order to make it more search engine-friendly, thus getting higher positions in organic search results.

        This article is only about WebSite SEO, so here is a list of things you should know before creating a website.


             The title tag:

        - a title tag tells users and search engines the topic of a particular page.

        - the tag should be unique to every page and should communicate the topic of the page's content.<br /><br /><div class="separator" style="clear: both; text-align: left;"> <a href="http://3.bp.blogspot.com/_Xwgyyhja3HU/TUWikpHSBXI/AAAAAAAABH0/Ignu2XjWPYc/s1600/page_title.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/_Xwgyyhja3HU/TUWikpHSBXI/AAAAAAAABH0/Ignu2XjWPYc/s1600/page_title.jpg" /></a></div><div class="separator" style="clear: both; text-align: left;"><br /></div><div class="separator" style="clear: both; text-align: left;"></div><div class="separator" style="clear: both; text-align: left;">      <b>Meta description tag:</b></div><div class="separator" style="clear: both; text-align: left;"><br /></div><div class="separator" style="clear: both; text-align: left;">- this tag tells search engines a summary of what the page is about. This tag should not be more that a paragraph.</div><div class="separator" style="clear: both; text-align: left;">                              <a href="http://3.bp.blogspot.com/_Xwgyyhja3HU/TUWjPb0RdEI/AAAAAAAABH4/Sf0yPIZIEvY/s1600/page_description.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/_Xwgyyhja3HU/TUWjPb0RdEI/AAAAAAAABH4/Sf0yPIZIEvY/s1600/page_description.jpg" /></a></div><br />Creating a good navigation system made mostly of text link will help search engines to crawl and understand your website easier, and this is good for your users too.<br /><div style="text-align: justify;"><b><br /></b><br /><b>     The structure of your URLs:</b></div><div style="text-align: justify;"><br /></div><div style="text-align: justify;">- it is very good to create a directory structure for your website, which describe your categories and filenames. </div><div style="text-align: justify;">         <br />This will not only help you keep your website better organized, but it could also lead to better crawling of your website by search engines.</div><div style="text-align: justify;"><br />- the name of your files and directories should be related to your content, that way you can make your urls more friendly.</div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><i>Here's an example of a friendly URL:</i></div><div style="text-align: justify;"><span class="Apple-style-span" style="color: #cc0000;">http://www.your-website.com/exotic-cars/ferrari-enzo.html</span></div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><i>and here a non friendly URL:</i></div><div style="text-align: justify;"><span class="Apple-style-span" style="color: #cc0000;">http://www.your-website.com/dir1/page1.html</span></div><div style="text-align: justify;"><br />- write explicit anchor text (<span class="Apple-style-span" style="color: #cc0000;"><a href=" ">anchor text here</a></span>) or clickable text in a link, so that          your users and search engines will know something about the page you're linking to.</div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><b>Create a sitemap for your website.</b> </div><div style="text-align: justify;"><br /></div><div style="text-align: justify;">A sitemap is a simple page on your site that displays the structure of your website, and usually consists of a hierarchical listing of the pages on your website. </div><div style="text-align: justify;">You should have two sitemaps, one for your visitors and one xml sitemap to be sent to diferent search engines, so that your website gets indexed faster. </div><div style="text-align: justify;">Here is a link that will help you <a href="http://www.xml-sitemaps.com/">generate a xml sitemap</a>.</div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><b>Use <h1></h1> tag for your article title.</b></div><div style="text-align: justify;"><br /></div><div style="text-align: justify;">- you should use the heading tags for your articles. These are from <span class="Apple-style-span" style="color: #cc0000;"><h1></h1></span>, the most important, to <span class="Apple-style-span" style="color: #cc0000;"><h6></h6></span> the last important.</div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><b>Optimize your images</b></div><div style="text-align: justify;"><br /></div><div style="text-align: justify;">- don't give your images file generic names like <span class="Apple-style-span" style="color: #cc0000;">"image1.jpg"</span>, give them names that describe what they show to your users, but not too long names;</div><div style="text-align: justify;"><br /></div><div style="text-align: justify;">- add the <span class="Apple-style-span" style="color: #cc0000;"><<alt>></span> attribute to your website images and write a descriptive text to it;</div><div style="text-align: justify;"><br /></div><div style="text-align: justify;">- try to keep all your website images into <span class="Apple-style-span" style="color: #cc0000;">one directory</span>.</div><div style="text-align: justify;"><br /></div><div style="text-align: justify;"><br /></div><div style="text-align: justify;">These were some of the basic SEO rules for creating a website that's search engine friendly. </div><div style="text-align: justify;"><br /></div><div style="text-align: justify;">Following these rules will help you in the process of search engine optimization for your website and this may lead one day to a <span class="Apple-style-span" style="color: #0b5394;">top 10 website</span> in its domain.<br /><br /><br /></div></span></div> <script type='text/javascript'>createSummaryAndThumb("summary4506263070445363865"); </script> <span class='rmlink' style='float:right;padding-top:20px;'><a href='https://joomlajw.blogspot.com/2011/02/search-engine-optimization-seo.html'> [Read More...]</a></span> <p style='margin:-8px 0'><br/></p> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'></div> <div class='post-footer-line post-footer-line-2'></div> <div class='post-footer-line post-footer-line-3'></div> </div> </div> <!--Can't find substitution for tag [adEnd]--> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='https://joomlajw.blogspot.com/search?updated-max=2011-04-28T09:21:00-07:00&max-results=7&reverse-paginate=true' id='Blog1_blog-pager-newer-link' title='Newer Posts'><img src='http://3.bp.blogspot.com/_b0xJ7qk6DTc/TID1Lt_-fMI/AAAAAAAAA9s/skFGHQzqyKg/s1600/132.png'/> Previous Article</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='https://joomlajw.blogspot.com/search?updated-max=2011-02-06T23:11:00-08:00&max-results=7' id='Blog1_blog-pager-older-link' title='Older Posts'>Next Article<img src='http://4.bp.blogspot.com/_b0xJ7qk6DTc/TID1Jb7Ej_I/AAAAAAAAA9k/0HvHVy1jw1I/s1600/131.png'/></a> </span> <a class='home-link' href='https://joomlajw.blogspot.com/'><center>Home</center></a> </div> <div class='clear'></div> <div class='blog-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='https://joomlajw.blogspot.com/feeds/posts/default' target='_blank' type='application/atom+xml'>Posts (Atom)</a> </div> </div> </div></div> <script type="text/javascript"> function showpageCount(json) { var thisUrl = location.href; var htmlMap = new Array(); var isFirstPage = thisUrl.substring(thisUrl.length-14,thisUrl.length)==".blogspot.com/"; var isLablePage = thisUrl.indexOf("/search/label/")!=-1; var isPage = thisUrl.indexOf("/search?updated")!=-1; var thisLable = isLablePage ? thisUrl.substr(thisUrl.indexOf("/search/label/")+14,thisUrl.length) : ""; thisLable = thisLable.indexOf("?")!=-1 ? thisLable.substr(0,thisLable.indexOf("?")) : thisLable; var thisNum = 1; var postNum=1; var itemCount = 0; var fFlag = 0; var eFlag = 0; var html= ''; var upPageHtml =''; var downPageHtml =''; var pageCount=5; var displayPageNum=3; var firstPageWord = 'First'; var endPageWord = 'Last'; var upPageWord ='Previous'; var downPageWord ='Next'; var labelHtml = '<span class="showpageNum"><a href="/search/label/'+thisLable+'?&max-results='+pageCount+'">'; for(var i=0, post; post = json.feed.entry[i]; i++) { var timestamp = post.published.$t.substr(0,10); var title = post.title.$t; if(isLablePage){ if(title!=''){ if(post.category){ for(var c=0, post_category; post_category = post.category[c]; c++) { if(encodeURIComponent(post_category.term)==thisLable){ if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){ if(thisUrl.indexOf(timestamp)!=-1 ){ thisNum = postNum; } postNum++; htmlMap[htmlMap.length] = '/search/label/'+thisLable+'?updated-max='+timestamp+'T00%3A00%3A00%2B08%3A00&max-results='+pageCount; } } } }//end if(post.category){ itemCount++; } }else{ if(title!=''){ if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){ if(thisUrl.indexOf(timestamp)!=-1 ){ thisNum = postNum; } if(title!='') postNum++; htmlMap[htmlMap.length] = '/search?updated-max='+timestamp+'T00%3A00%3A00%2B08%3A00&max-results='+pageCount; } } itemCount++; } } for(var p =0;p< htmlMap.length;p++){ if(p>=(thisNum-displayPageNum-1) && p<(thisNum+displayPageNum)){ if(fFlag ==0 && p == thisNum-2){ if(thisNum==2){ if(isLablePage){ upPageHtml = labelHtml + upPageWord +'</a></span>'; }else{ upPageHtml = '<span class="showpage"><a href="/">'+ upPageWord +'</a></span>'; } }else{ upPageHtml = '<span class="showpage"><a href="'+htmlMap[p]+'">'+ upPageWord +'</a></span>'; } fFlag++; } if(p==(thisNum-1)){ html += ' <span class="showpagePoint"><u>'+thisNum+'</u></span>'; }else{ if(p==0){ if(isLablePage){ html = labelHtml+'1</a></span>'; }else{ html += '<span class="showpageNum"><a href="/">1</a></span>'; } }else{ html += '<span class="showpageNum"><a href="'+htmlMap[p]+'">'+ (p+1) +' </a></span>'; } } if(eFlag ==0 && p == thisNum){ downPageHtml = '<span class="showpage"> <a href="'+htmlMap[p]+'">'+ downPageWord +'</a></span>'; eFlag++; } }//end if(p>=(thisNum-displayPageNum-1) && p<(thisNum+displayPageNum)){ }//end for(var p =0;p< htmlMap.length;p++){ if(thisNum>1){ if(!isLablePage){ html = '<span class="showpage"><a href="/">'+ firstPageWord +' </a></span>'+upPageHtml+' '+html +' '; }else{ html = ''+labelHtml + firstPageWord +' </a></span>'+upPageHtml+' '+html +' '; } } html = '<div class="showpageArea"><span style="font-size:11px;padding: 2px 4px 2px 4px;margin: 2px 2px 2px 2px;color: #000000;border: 1px solid #333; background-color: #FFFFFF;" class="showpage">Page '+thisNum+' of '+(postNum-1)+': </span>'+html; if(thisNum<(postNum-1)){ html += downPageHtml; html += '<span class="showpage"><a href="'+htmlMap[htmlMap.length-1]+'"> '+endPageWord+'</a></span>'; } if(postNum==1) postNum++; html += '</div>'; if(isPage || isFirstPage || isLablePage){ var pageArea = document.getElementsByName("pageArea"); var blogPager = document.getElementById("blog-pager"); if(postNum <= 2){ html =''; } for(var p =0;p< pageArea.length;p++){ pageArea[p].innerHTML = html; } if(pageArea&&pageArea.length>0){ html =''; } if(blogPager){ blogPager.innerHTML = html; } } } </script> <script src="/feeds/posts/summary?alt=json-in-script&callback=showpageCount&max-results=99999" type="text/javascript"></script> <div style='text-align:right;font-size:10px;color:000000;margin-top:15px;display:none;'> <a href='http://devilsworkshop.org'>Widget By Devils Workshop</a></div> </div> <div id='sidebar-wrapper'> <div class='sidebar section' id='sidebar'><div class='widget AdSense' data-version='1' id='AdSense1'> <div class='widget-content'> <script type="text/javascript"><!-- google_ad_client="pub-5437344106154965"; google_ad_host="pub-1556223355139109"; google_alternate_ad_url="http://img2.blogblog.com/img/blogger_ad.html"; google_ad_width=250; google_ad_height=250; google_ad_format="250x250_as"; google_ad_type="text_image"; google_ad_host_channel="0001"; google_color_border="FFFFFF"; google_color_bg="FFFFFF"; google_color_link="0000FF"; google_color_url="008000"; google_color_text="000000"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <div class='clear'></div> </div> </div> <div class='widget Header' data-version='1' id='Header1'> <div id='header-inner'> <div class='titlewrapper'> <h1 class='title'> <a href='https://joomlajw.blogspot.com/'> joomla tutorials </a> </h1> </div> <div class='descriptionwrapper'> <p class='description'><span>joomla, joomla template free, joomla extensions, jooma how to, joomla tutorial</span></p> </div> </div> </div><div class='widget Attribution' data-version='1' id='Attribution1'> <div class='widget-content' style='text-align: center;'> jw-extensions.net. Powered by <a href='https://www.blogger.com' target='_blank'>Blogger</a>. </div> <div class='clear'></div> </div><div class='widget Profile' data-version='1' id='Profile1'> <h2>About Me</h2> <div class='widget-content'> <dl class='profile-datablock'> <dt class='profile-data'> <a class='profile-name-link g-profile' href='https://www.blogger.com/profile/04289525703714369536' rel='author' style='background-image: url(//www.blogger.com/img/logo-16.png);'> Huong Giang </a> </dt> </dl> <a class='profile-link' href='https://www.blogger.com/profile/04289525703714369536' rel='author'>View my complete profile</a> <div class='clear'></div> </div> </div><div class='widget Followers' data-version='1' id='Followers1'> <h2 class='title'>Followers</h2> <div class='widget-content'> <div id='Followers1-wrapper'> <div style='margin-right:2px;'> <div><script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <div id="followers-iframe-container"></div> <script type="text/javascript"> window.followersIframe = null; function followersIframeOpen(url) { gapi.load("gapi.iframes", function() { if (gapi.iframes && gapi.iframes.getContext) { window.followersIframe = gapi.iframes.getContext().openChild({ url: url, where: document.getElementById("followers-iframe-container"), messageHandlersFilter: gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER, messageHandlers: { '_ready': function(obj) { window.followersIframe.getIframeEl().height = obj.height; }, 'reset': function() { window.followersIframe.close(); followersIframeOpen("https://www.blogger.com/followers.g?blogID\x3d2069966817575615178\x26colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMwMDAwMDAiByMwMDAwMDAqByNGRkZGRkYyByMwMDAwMDA6ByMwMDAwMDBCByMwMDAwMDBKByMwMDAwMDBSByNGRkZGRkZaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26origin\x3dhttps://joomlajw.blogspot.com/"); }, 'open': function(url) { window.followersIframe.close(); followersIframeOpen(url); }, 'blogger-ping': function() { } } }); } }); } followersIframeOpen("https://www.blogger.com/followers.g?blogID\x3d2069966817575615178\x26colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMwMDAwMDAiByMwMDAwMDAqByNGRkZGRkYyByMwMDAwMDA6ByMwMDAwMDBCByMwMDAwMDBKByMwMDAwMDBSByNGRkZGRkZaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26origin\x3dhttps://joomlajw.blogspot.com/"); </script></div> </div> </div> <div class='clear'></div> </div> </div><div class='widget BlogArchive' data-version='1' id='BlogArchive1'> <h2>Blog Archive</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2019/'> 2019 </a> <span class='post-count' dir='ltr'>(3)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2019/01/'> January </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2012/'> 2012 </a> <span class='post-count' dir='ltr'>(10)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2012/04/'> April </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2012/03/'> March </a> <span class='post-count' dir='ltr'>(8)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2012/01/'> January </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/'> 2011 </a> <span class='post-count' dir='ltr'>(46)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/12/'> December </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/08/'> August </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/07/'> July </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/06/'> June </a> <span class='post-count' dir='ltr'>(9)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/05/'> May </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/04/'> April </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/03/'> March </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/02/'> February </a> <span class='post-count' dir='ltr'>(9)</span> <ul class='posts'> <li><a href='https://joomlajw.blogspot.com/2011/02/will-i-lose-my-work-if-i-re-install.html'>Will I Lose My Work If I Re-Install?</a></li> <li><a href='https://joomlajw.blogspot.com/2011/02/how-to-find-out-what-template-is-used.html'>How to Find Out What Template is Used on a Site</a></li> <li><a href='https://joomlajw.blogspot.com/2011/02/building-website.html'>Building a website</a></li> <li><a href='https://joomlajw.blogspot.com/2011/02/building-my-first-website-css-tutorial.html'>Building My First WebSite - CSS Tutorial</a></li> <li><a href='https://joomlajw.blogspot.com/2011/02/html-tutorial.html'>HTML Tutorial</a></li> <li><a href='https://joomlajw.blogspot.com/2011/02/cms-based-website.html'>CMS Based Website</a></li> <li><a href='https://joomlajw.blogspot.com/2011/02/web-building-tools.html'>Web Building Tools</a></li> <li><a href='https://joomlajw.blogspot.com/2011/02/how-to-install-xampp-for-joomla.html'>How to install Xampp - for Joomla</a></li> <li><a href='https://joomlajw.blogspot.com/2011/02/search-engine-optimization-seo.html'>Search Engine Optimization (SEO)</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2011/01/'> January </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2010/'> 2010 </a> <span class='post-count' dir='ltr'>(9)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2010/08/'> August </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2010/06/'> June </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2010/05/'> May </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2009/'> 2009 </a> <span class='post-count' dir='ltr'>(5)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2009/10/'> October </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2009/08/'> August </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2008/'> 2008 </a> <span class='post-count' dir='ltr'>(13)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2008/12/'> December </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2008/09/'> September </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2008/08/'> August </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2008/06/'> June </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='https://joomlajw.blogspot.com/2008/05/'> May </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div></div> </div> <!-- spacer for skins that want sidebar and main to be the same height--> <div class='clear'> </div> </div> <!-- end content-wrapper --> <div id='footer-wrapper'> <div class='footer no-items section' id='footer'></div> </div> </div></div> <!-- end outer-wrapper --> </div> <div id='lower'> <div id='lower-wrapper'> <div id='lowerbar-wrapper'> <div class='lowerbar section' id='lowerbar1'><div class='widget Label' data-version='1' id='Label2'> <h2>Danh Mục</h2> <div class='widget-content list-label-widget-content'> <ul> <li> <a dir='ltr' href='https://joomlajw.blogspot.com/search/label/article'>article</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://joomlajw.blogspot.com/search/label/Building%20a%20website'>Building a website</a> <span dir='ltr'>(3)</span> </li> <li> <a dir='ltr' href='https://joomlajw.blogspot.com/search/label/extensions'>extensions</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://joomlajw.blogspot.com/search/label/Free%20Joomla%20Template'>Free Joomla Template</a> <span dir='ltr'>(3)</span> </li> <li> <a dir='ltr' href='https://joomlajw.blogspot.com/search/label/joomla'>joomla</a> <span dir='ltr'>(9)</span> </li> <li> <a dir='ltr' href='https://joomlajw.blogspot.com/search/label/menu%20module'>menu module</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://joomlajw.blogspot.com/search/label/modules'>modules</a> <span dir='ltr'>(1)</span> </li> <li> <a dir='ltr' href='https://joomlajw.blogspot.com/search/label/user%20menu'>user menu</a> <span dir='ltr'>(1)</span> </li> </ul> <div class='clear'></div> </div> </div></div> </div> <div id='lowerbar-wrapper'> <div class='lowerbar section' id='lowerbar2'><div class='widget HTML' data-version='1' id='HTML5'> <h2 class='title'>Link Liên kết</h2> <div class='widget-content'> </div> <div class='clear'></div> </div> </div> </div> <div id='lowerbar-wrapper'> <div class='lowerbar section' id='lowerbar3'><div class='widget HTML' data-version='1' id='HTML9'> <h2 class='title'>Thông tin liên hệ</h2> <div class='widget-content'> YH: huonggiangdhtn<br /> Skype: tthuonggiang </div> <div class='clear'></div> </div></div> </div> <div style='clear: both;'></div> </div> </div> <div id='important'><span style='float: left;margin: 0;padding: 0px 4px 0px 5px;width: 200px;display:block;'><img src='http://4.bp.blogspot.com/_b0xJ7qk6DTc/TH0uXtg28sI/AAAAAAAAA78/rWKJKBQQD-E/s1600/footer-top.png' style='margin: 4px 5px 0 0;padding:0;'/><a href='#'>Return to top of page</a></span> <span style='float: right;margin: 0px;padding: 0px 10px 0px 0px;text-align: right;width: 740px;display:block;'>Copyright © 2010 | <a href='http://jw-extension.net' title='joomla extension.net'>joomla extensions</a> jw-extension.net</span></div> <script src='http://demo.studiopress.com/platinum/wp-content/themes/genesis/lib/js/menu/superfish.js?ver=1.4.8' type='text/javascript'></script> <script src='http://demo.studiopress.com/platinum/wp-content/themes/genesis/lib/js/menu/superfish.args.js?ver=1.3' type='text/javascript'></script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/4290687098-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY6N0rW4BXUOT-4MYHiJZedb2Dte3w:1715292675400';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d2069966817575615178','//joomlajw.blogspot.com/2011/02/','2069966817575615178'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '2069966817575615178', 'title': 'joomla tutorials', 'url': 'https://joomlajw.blogspot.com/2011/02/', 'canonicalUrl': 'https://joomlajw.blogspot.com/2011/02/', 'homepageUrl': 'https://joomlajw.blogspot.com/', 'searchUrl': 'https://joomlajw.blogspot.com/search', 'canonicalHomepageUrl': 'https://joomlajw.blogspot.com/', 'blogspotFaviconUrl': 'https://joomlajw.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22joomla tutorials - Atom\x22 href\x3d\x22https://joomlajw.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22joomla tutorials - RSS\x22 href\x3d\x22https://joomlajw.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22joomla tutorials - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/2069966817575615178/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-5437344106154965', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/af0c04622aa32429', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'Twitter', 'key': 'twitter', 'shareMessage': 'Share to Twitter', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'archive', 'pageName': 'February 2011', 'pageTitle': 'joomla tutorials: February 2011'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'joomla tutorials', 'description': 'joomla, joomla template free, joomla extensions, jooma how to, joomla tutorial', 'url': 'https://joomlajw.blogspot.com/2011/02/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': false, 'isArchive': true, 'isLabelSearch': false, 'archive': {'year': 2011, 'month': 2, 'rangeMessage': 'Showing posts from February, 2011'}}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2309908549-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/13464135-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense1', 'sidebar', document.getElementById('AdSense1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'sidebar', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'sidebar', document.getElementById('Attribution1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FollowersView', new _WidgetInfo('Followers1', 'sidebar', document.getElementById('Followers1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label2', 'lowerbar1', document.getElementById('Label2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'lowerbar2', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML9', 'lowerbar3', document.getElementById('HTML9'), {}, 'displayModeFull')); </script> </body> </html>