Saturday, 8 June 2013

HTML Tutorial - Learn to Design a Website using HTML


by Christopher Heng, thesitewizard.com

All web pages that you see on the Internet use HTML to format its pages for display in a web browser. This is so whether the website is a shopping site, a search engine, a blog or a tutorial site like thesitewizard.com. This tutorial is intended to be a systematic guide to teach you HTML from the ground up. It assumes no knowledge of HTML. By the end of this tutorial series, you'll be confidently creating web pages by directly coding in HTML.

Hand coding a web page in HTML is not the easiest way to create a website. In fact, it's probably the slowest and least efficient way, and, depending on your inclinations, possibly the most tedious. If all you want is to create a website, you may want to consider using a visual web editor to do the job instead. Visual web editors, also called WYSIWYG web editors ("What You See Is What You Get" editors), are computer programs that let you design websites without needing any technical know-how.

Please see Should I Learn HTML or Just Use a WYSIWYG Web Editor? Pros and Cons of Using a Visual Web Editor vs Learning HTML for a more detailed discussion of the advantages and disadvantages of using either method.

Tutorials for both free and commercial visual web editors can be found on the following pages:

Dreamweaver CS5 Tutorial — Dreamweaver is a well-known commercial web editor. If you are using an older version of Dreamweaver, please see the appropriate versions of the tutorial instead, such as the Dreamweaver CS4 Tutorial or the Dreamweaver CS3 Tutorial.

KompoZer Tutorial — KompoZer is a free web editor.

I have tutorials for other less known web editors as well. The list of tutorials for these different editors can be found on the Tutorials for WYSIWYG Web Editors page. This includes the NetObjects Fusion 11 Tutorial (a commercial web editor) and the Nvu Tutorial (an old version of KompoZer).

Since this is an HTML tutorial, it omits some of the non-HTML-related steps that are required for creating a website, like getting your own domain name, getting a web host, etc. I recommend that you read How to Make / Create Your Own Website: The Beginner's A-Z Guide for more information on these steps. In fact, if you don't already have a domain name or a web host, or if you don't even know what these things mean, I suggest that you read that guide first. The HTML tutorial you're reading assumes that you already know those terms.

HTML in and of itself will not let you do things that web designers typically want to do on their website, like create 2 or more columns on your websites, use different fonts, change colours (or "colors" if you use a different variant of English), or do certain other visual design work to make your web page look nice. Things that govern the appearance of your website are handled by a separate technology called CSS. Please read What is HTML? What is CSS? What are JavaScript, PHP and Perl? Do I Need to Learn Them to Create a Website? for an explanation of what this is, and how it relates to HTML.

That is to say, after completing the HTML portion of this tutorial series, we will move on to the CSS tutorial, so that you can complete your website. Don't worry. This HTML tutorial will seamlessly lead into the CSS tutorial, since both sections of the tutorials were written to work with each other.

If this sounds daunting, you may want to consider creating your first website using one of the visual web editors mentioned above. Those editors automatically create the HTML and CSS code for you, so that you don't have to bother with such things. Then, after you finish your website that way, if you still want to learn HTML, feel free to return to this guide.

The first thing you need is to get a proper text editor. Let me start by ruling out certain things, so that there's no misunderstanding about what I mean when I say "proper text editor".

I know that when I mentioned "text editor", some people probably thought, "no problem, my computer uses Windows, which comes with Notepad".

Let me say this bluntly: Notepad is NOT a proper text editor. If you are going to be working on your website by coding directly in HTML, you really need a fully functional editor. Notepad cannot handle certain characters and character combinations that you may encounter along the road. As such, in certain circumstances, it may corrupt your file without your realising it. Oh, don't get me wrong. It'll work fine most of the time, but at some point along the road, if your file happens to have one or more of those characters it doesn't handle, it will bite you. And you won't even know it happened, since there is no warning or error message accompanying the file corruption. In addition, Notepad cannot handle large files, in which case it may transparently invoke a different program, Wordpad, to do the job. And Wordpad will definitely corrupt your web page.

Bear in mind that even the Microsoft developers do not regard (nor do they recommend) Notepad as a viable editor for normal text editing work. The editor was created for the casual computer user to view things like Windows log files and things like that. That's why it does things like transparently invoking a different program for huge files. Since it's primarily for viewing files, it doesn't matter whether Notepad or Wordpad does the work. But for the webmaster, it matters a great deal.

Even if you are striving for an ascetic life of hardship and severity, Notepad isn't the way. It may be acceptable for someone dabbling with the occasional text file (and even then it's debatable), but it's not the correct tool for someone who wants to work directly with HTML on a regular basis.

Do not use word processors to hand code HTML files. Word processors insert hidden (and invisible) code into your files which are not part of HTML.

By word processors, I mean any program that allows you to underline text, make text bold, put text in italics, create tables, etc. This includes Microsoft Word, LibreOffice, OpenOffice.org, and all the stuff listed in the Free Word Processors and Office Suites page. It also includes Wordpad, which comes with Windows. Yes, Wordpad is a rudimentary word processor. Do not use it for this purpose.

Remember: the type of text editors I'm talking about do not allow you to do things like underline words, put text in bold, etc. They behave just like Notepad (without the problems the latter has). If your program has these types of features, it's not a text editor but a full blown word processor.

Some of you are probably thinking at this point that I've ruled out just about everything on your computer system. Don't worry. Text editors are a dime a dozen on the Internet. In fact, you don't even need a dime. There are zillions of free text editors around. (And zillions of commercial ones too, for that matter. Programmers seem to love creating text editors.)

A list of free text editors can be found on the following pages:

Free HTML Editors and WYSIWYG Web Editors — although this page lists both text editors as well as WYSIWYG web editors, remember that you're just looking for a text editor, so you can ignore the WYSIWYG web editors section of that page. (In case you're wondering, the HTML editors listed on the page are just text editors. They can be used to type HTML code, programming code or any other types of plain text.)

If you can't find anything you like on that page, you can also look at the Free Programmer's Editors page. Don't be deceived by the grandiose title of the page. "Programmer's editors" are just plain text editors. In fact, my decision whether to list a text editor on the HTML editors page or the programmers' editors page is very often arbitrary. If you happen to use a particular text editor to write HTML code, you will end up calling it an HTML editor. If you happen to use the same thing to write programming code, you'll call it a programmer's editor. But they're all just plain text editors. Really. It's mostly a matter of perspective.

For those who can't decide, let me just say, from the point of view of someone who has been using text editors for decades: they're all mostly the same nowadays. Remember that these are not fancy word processors or anything. They all function like Notepad. There is no "best" text editor or anything like that. If you can't decide, just get one and try it out. If you don't like it for some reason, uninstall it and get another one and try that instead. After all, they are all free.

(Actually, for beginners, chances are that any one that you pick will work just fine.)

If you already have Dreamweaver, you don't have to get a separate text editor. Just switch to Dreamweaver's code view. That is, click "View" from the menu bar, and "Code" from the drop-down menu that appears. This switches Dreamweaver from its visual design interface to its text editor interface.

And you're not getting some half-baked text editor either. Dreamweaver's built-in text editor is actually very good, and one that is highly optimised for people writing HTML, so you might as well not waste time looking for another one. Using Dreamweaver's code editor also has numerous other advantages. For example, it has tools to check your code for correctness, and you can also easily switch to the editor's Design view to get an idea of what your web page looks like in a browser. Other advantages include being able to use its site synchronisation facilities to publish your web pages. And so on.

Now that I've bored you to tears with the preliminaries, let's just jump into the deep end of the pool immediately.

Before we discuss the code above, please copy it into your text editor, and save it as a file named "sample.html" on your desktop. I know it's easy to just dismiss my words here and skip this step, but doing it will speed up your learning and improve your understanding of what I'm talking about later. (You'll also be modifying the code as we go along.) There's also a secondary (less important) benefit in that it'll help you get familiar with your text editor.

For those who don't know how to do what I just said in the paragraph above, click once in the box above containing the code. The contents of the box should automatically be highlighted. If it isn't, drag your mouse over the text and manually select everything. Then click your right mouse button. In the menu that appears, click the "Copy" item. Start up your text editor. Click "Edit" on the menu bar followed by the "Paste" item in the drop-down menu that appears. The text you see in the box above should appear in your text editor.

Depending on which editor you've installed, the text above may appear in a variety of colours. Don't worry about that. The colours are what programmers call "syntax highlighting". Just ignore it. (And don't worry if you don't see those colours either. They are not important.)

To save the file, click the "File" menu, followed by the "Save" item in the submenu that appears. When prompted for a filename, select the appropriate folder for the file to be saved (for example, your desktop, so that you won't forget where you put it) and type "sample.html" (without the quotes). Note that I'm assuming that you're not using Notepad. If you use Notepad, this won't work, since Notepad will invisibly change your filename to "sample.html.txt" behind your back. Don't use Notepad.

Now open the file in your web browser. One way to do it is to doubleclick the file on your desktop. The file should appear in your default web browser. Keep both the browser and the text editor open. That is, don't close or exit either program.

Look at the HTML code (either in your text editor or by scrolling up in this article).

Notice that the words displayed in your web browser, "This is a sample web page from thesitewizard.com's HTML tutorial" is sandwiched between "

" and "

". This entire block is itself sandwiched between "" and "". In fact, if you're observant, you'll notice that there are other pairs of words enclosed in angle brackets like the "" and "" pair, as well as the "" and "" pair.

All these angle-bracketed words (or letters) are commonly called "HTML tags". In HTML, the majority of tags come in pairs, with the unadorned version, like "", being used to indicate the start of something, and the version with a preceding slash ("/"), like "", being used to flag the end of something.

Each tag has a specific function. For example, the "

" and "

" tag pair is used to indicate the start and end of a paragraph. (Think of the "p" in "

" as referring to "paragraph".)

Before we discuss the structure of a web page, consider a normal business letter in the brick and mortar world. Such letters actually have a particular form: if the paper you're using does not have a letterhead, you will normally have to type (or write) your own address at the top of the page, followed by the address of the person you're writing to below. Only then do you begin your letter proper with something like "Dear...". There is typically a subject line following that, and below that comes the body of your letter where you finally get to say the things you wanted to say.

Web pages also have a particular format.

The first line of the page identifies the type and version of HTML that your web page is using.

The rest of the page is enclosed between the "" / "" tag pair. Code enclosed between these two tags form the web page proper.

The first part of the web page is what is known as the HEAD section. The section begins with "" and ends with "". It contains information meant for web browsers and search engines. Code placed in this section is not displayed in a web browser. It's like the addresses you place at the beginning of a business letter — they serve a purpose, but they're not actually part of the main content. Anyway, I'm sure you noticed that the HEAD section in my example code is empty at the moment. That's because I didn't want to confuse you by cluttering the file with too many things. We'll insert something into this section later in this chapter.

The part of the web page that contains the information displayed in a web browser is called the BODY section, and it is, as you've probably guessed by now, enclosed between the "" and "" tag pair.

Each of these things is discussed in detail below.

In the example code you used above, the first line reads as follows:

Unlike the other lines on your web page, this first line is not an HTML tag. As mentioned above, it's a sort of version identifier that tells web browsers that your page is using version 4.01 of the HTML specifications. At the time I write this, as far as I can tell, the most commonly used versions of HTML on the Internet are HTML 4 (or 4.01 to be exact) and XHTML 1.0. For all practical intents and purposes, these two versions are actually mostly the same, except that XHTML is fussier about some things, like requiring small letters (lowercase) words for your tags, requiring closing tags for everything, and some other stuff.

We will only be dealing with HTML 4.01 in this tutorial. Don't worry. You don't lose out anything by using HTML 4 as compared to XHTML. In spite of its flashier name (with the extra letter), XHTML doesn't give you more features to use on your web page. It mostly just makes the browser fussier about what it will accept from your web page. It also adds complications with cross-browser compatibility (mainly with old versions of Internet Explorer) that will make your life a bit more miserable if you're a purist and insist on strict compliance with every aspect of XHTML. Since you're just starting out, it's easiest to just begin with HTML 4. (And there's no real need to transition to XHTML either. HTML 4 is complete in itself.)

The version line is commonly called a DOCTYPE by webmasters (since the line begins with the word DOCTYPE). Officially, it is known as a Document Type Definition (or "DTD" for those who love abbreviations). As its name indicates, it does more than tell web browsers the version of HTML you're using. It also indicates whether your web page is one of 3 types: whether it uses frames (a type of HTML technology), whether it is a normal web page ("transitional"), or whether it is a normal web page that uses a limited subset of HTML ("strict").

For those curious about what the DOCTYPEs look like for the other document types, they are as follows:



Anyway, there's no need to memorize any of these DOCTYPEs. Just copy and paste them into your web page as needed.

One of the most important things that belong in the HEAD section is the TITLE tag for your web page. This tag provides web browsers and search engines the title of your page. The title you give in this tag doesn't actually appear on your web page itself, but it is placed in the title bar of the web browser window when it displays your page. To understand what I mean by this, glance at the top of your browser window for now. Do NOT scroll the page to the top or anything like that. Just look upwards at the top edge of the browser. In most web browsers, you should be able to see the words "HTML Tutorial - Learn to Design a Website using HTML (thesitewizard.com)" somewhere in the title bar. Some browsers put these words on the tab for the current window. This is the title that I set for this article.

Switch to your text editor and add the following line into your HEAD section.

My First Web Page

For those not sure what I mean, move your cursor to the end of the line containing the tag. Hit the ENTER key to create a new line underneath. Then type in the words I gave in the block above. Actually, you don't really have to use the words "My First Web Page". Use whatever words you want as the title. But make sure those words are enclosed between the opening tag and the closing tag. And ensure that this entire sequence occurs before the closing tag. In other words, when I say to add a certain line into the HEAD section, it means that you have to add that line between the opening tag and the corresponding closing tag.

Save your page and reload (refresh) it in your web browser. For those who are not sure how to reload a page in your browser, find out how. In most browsers, hitting Ctrl+R should do the trick (that is, holding down the Ctrl key while typing the letter "r" on the keyboard). In addition, if you use Windows, a quick way to save your work in most (if not all) text editors is to hit Ctrl+S, that is, hold down the Ctrl key and type "s" on the keyboard. (I'm not sure if this works across the board on Mac software too.)

Now look at the title bar of the browser window. You should be able to see the title you set. Notice that the words you typed do not appear in the main body of your web page itself. The only sets the title of your web page for the benefit of web browsers and search engines. It does not change your web page's appearance. Anything that you want displayed on your web page itself has to be inserted into the BODY section. </P>Important: The TITLE tag is required on every web page. Do not leave it out. As I mentioned above, the sample HTML page I gave earlier was not complete, since it lacked the TITLE tag. Actually, it's still not complete, even as a minimal page, and won't be until the next chapter. </P><P>Again, please do not quit your text editor or web browser. Keep it open throughout the tutorial. You'll learn faster if you try out what I mention. </P><P>Although I'll introduce the majority of the HTML tags dealing with text in the next chapter, we will handle the paragraph tag, <p>, here. This will also allow me to demonstrate one very important feature of HTML, namely, whitespace characters do not matter in the portion of the web page between most opening and closing HTML tags. (Don't worry if the last part of that sentence doesn't make sense. That's what this whole section is here for: to explain it.) </P><P>Before we get ahead of ourselves, let me first state that the <p> tag signals to the browser that it is to display what follows as a single paragraph until it reaches a </p> tag. </P><P>In your text editor, put your text cursor at the end of the line that says "This is a sample web page from thesitewizard.com's HTML tutorial." That is, move your cursor until it is just after the full stop (period) in that sentence. Hit the ENTER key (or RETURN key if you use a Mac). This creates a new line in the text editor. Now type some other sentence into that new blank line. For those who don't know what to say, type "TheSiteWizard.com is a useful resource for webmasters" (without the quotes). </P><P>Save the page and reload it in your browser, and look carefully at the placement of your new sentence. Notice that even though you put the sentence on a new line in your text editor, your browser displayed the sentence immediately following the previous one, so as to make both sentences part of the same paragraph. </P><P>Return to your text editor and put your cursor between the words "from" and "thesitewizard.com's". At this time, there is only one blank space between those two words. Add some more spaces by hitting your space bar several times. It doesn't matter how many spaces you add, as long as it's a significant number so that you can easily spot that there's a large unnatural gap between those two words. Hit the space bar 10 times if you can't decide. </P><P>Once again, save your page and refresh it in the browser. Look at your paragraph in the browser again. Observe that your paragraph looks no different from before. It's as though the web browser swallowed all your extra spaces. </P><P>The space character and the new line character (the invisible character or sequence of characters that the text editor inserts into your web page when you hit the ENTER or RETURN key) are called "whitespace" characters. Multiple whitespace characters are replaced by a single whitespace character by all web browsers. In HTML, you do not format a web page by adding spaces or new lines. It won't work. As you have noticed from above, the browser just ignores the extra spaces or lines you add. Instead, you format a page in HTML by adding different HTML tags, or by using CSS. </P><P>How does one add a new paragraph to a web page? I'm sure at this point, most of you have already (long) guessed the answer. But let's try it out so that you can see it in action. (I also want to use it to demonstrate something else about HTML. So please do it even though it seems really obvious.) </P><P>Move your cursor to the end of the </p> line. Hit the ENTER key. Then insert the following into the new line that you created. </P><p>This is a new paragraph because I used a new paragraph tag to start it off.</p> <P>Save the page and reload it in your browser. The newest addition to your web page should now appear as a new paragraph in your browser. </P><P>Switch back to your text editor again. Notice that unlike the previous paragraph, I didn't put my <p> tag on its own line. Instead, I just typed the sentence belonging to the paragraph immediately after the tag, and yet everything worked out the same as when I put the tag on a separate line. Whether or not there is any whitespace between the paragraph tag and my actual text doesn't matter at all. </P><P>I recommend that you play around with this a while to get familiar with how the web browsers interpret white space and the paragraph tags. That is, add new paragraphs, or new sentences to your existing paragraph tags, put all sentences and tags on a single line, and reload the page in your browser to see its effects. </P><P>From the above experiments, you have probably realised that you can probably put your entire web page on a single line in your text editor, and everything will still show up correctly in your web browser. </P><P>While that is true, it's best that you don't do that. Although web browsers will have no trouble dealing with that kind of code, you, the webmaster maintaining the page, will. With everything compressed to occupy minimum space, it's very easy for you to miss something and create errors on your web page. The minimal space saving you get from doing those kinds of silly tricks is just not worth it. </P><P>In the <A href="http://www.thesitewizard.com/html-tutorial/html-4-xhtml-tutorial-2.shtml" target=_top>next chapter</A>, we will deal in greater detail with the HTML features that pertain to text. </P><P>Copyright © 2011-2012 Christopher Heng. All rights reserved.<BR>Get more free tips and articles like <A href="http://www.thesitewizard.com/html-tutorial/html-4-xhtml-tutorial-1.shtml" target=_top>this</A>, on web design, promotion, revenue and scripting, from <A href="http://www.thesitewizard.com/" target=_top>http://www.thesitewizard.com/</A>. </P><P>Do you find this article useful? You can learn of new articles and scripts that are published on <A href="http://www.thesitewizard.com/" target=_top>thesitewizard.com</A> by subscribing to the RSS feed. Simply point your RSS feed reader or a browser that supports RSS feeds at <A title="RSS feed" href="http://www.thesitewizard.com/thesitewizard.xml" target=_top>http://www.thesitewizard.com/thesitewizard.xml</A>. You can <A href="http://www.thesitewizard.com/faqs/howtoreadsitefeeds.shtml" target=_top>read more about how to subscribe to RSS site feeds</A> from my <A href="http://www.thesitewizard.com/faqs/howtoreadsitefeeds.shtml" target=_top>RSS FAQ</A>. </P><P>This article is copyrighted. Please do not reproduce this article in whole or part, in any form, without <A href="http://www.thesitewizard.com/feedback.php" target=_top>obtaining my written permission</A>. </P><P>It will appear on your page as: </P><P><A href="http://www.thesitewizard.com/html-tutorial/html-4-xhtml-tutorial-1.shtml" target=_top>HTML Tutorial - Learn to Design a Website using HTML</A> </P><BR>Copyright © 2011-2012 Christopher Heng. All rights reserved.<BR>thesitewizard™, thefreecountry™ and HowToHaven™ are trademarks of Christopher Heng.<BR>This page was last updated on 4 June 2012. <BR><br />This post was made using the <a href='http://www.webmagnates.org/auto-blogging-software.html' title='auto-blogging software'>Auto Blogging Software</a> from <a href='http://www.webmagnates.org' title'make money online'>WebMagnates.org</a> This line will not appear when posts are made after activating the software to full version. <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <ul class='way2blogging-social' id='way2blogging-cssanime'> <li class='way2blogging-facebook'> <a href='http://www.facebook.com/share.php?v=4&src=bm&u=http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html&t=HTML Tutorial - Learn to Design a Website using HTML' onclick='window.open(this.href,'sharer','toolbar=0,status=0,width=626,height=436'); return false;' rel='nofollow' title='Share this on Facebook'><strong>Facebook</strong></a> </li> <li class='way2blogging-twitter'> <a href='http://twitter.com/home?status=HTML Tutorial - Learn to Design a Website using HTML -- http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html' rel='nofollow' title='Tweet This!'><strong>Twitter</strong></a> </li> <li class='way2blogging-googlebuzz'> <a href='http://www.google.com/buzz/post?url=http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html&imageurl=' rel='nofollow' title='Post on GoogleBuzz'><strong>Google Buzz</strong></a> </li> <li class='way2blogging-stumbleupon'> <a href='http://www.stumbleupon.com/submit?url=http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html&title=HTML Tutorial - Learn to Design a Website using HTML' rel='nofollow' title='Stumble upon something good? Share it on StumbleUpon'><strong>StumbleUpon</strong></a> </li> <li class='way2blogging-digg'> <a href='http://digg.com/submit?phase=2&url=http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html&title=HTML Tutorial - Learn to Design a Website using HTML' rel='nofollow' title='Digg this!'><strong>Digg</strong></a> </li> <li class='way2blogging-delicious'> <a href='http://delicious.com/post?url=http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html&title=HTML Tutorial - Learn to Design a Website using HTML' rel='nofollow' title='Share this on del.icio.us'><strong>Delicious</strong></a> </li> <li class='way2blogging-linkedin'> <a href='http://www.linkedin.com/shareArticle?mini=true&url=http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html&title=HTML Tutorial - Learn to Design a Website using HTML&summary=&source=' rel='nofollow' title='Share this on LinkedIn'><strong>LinkedIn</strong></a> </li> <li class='way2blogging-reddit'> <a href='http://reddit.com/submit?url=http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html&title=HTML Tutorial - Learn to Design a Website using HTML' rel='nofollow' title='Share this on Reddit'><strong>Reddit</strong></a> </li> <li class='way2blogging-technorati'> <a href='http://technorati.com/faves?add=http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html' rel='nofollow' title='Share this on Technorati'><strong>Technorati</strong></a> </li> </ul> <span class='post-author vcard'> Posted by <span class='fn'>Unknown</span> </span> <span class='post-timestamp'> at <a class='timestamp-link' href='http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html' rel='bookmark' title='permanent link'><abbr class='published' title='2013-06-08T16:13:00-07:00'>16:13</abbr></a> </span> <span class='post-comment-link'> </span> <span class='post-labels'> Labels: <a href='http://quickicash.blogspot.com/search/label/Design' rel='tag'>Design</a>, <a href='http://quickicash.blogspot.com/search/label/Learn' rel='tag'>Learn</a>, <a href='http://quickicash.blogspot.com/search/label/Tutorial' rel='tag'>Tutorial</a>, <a href='http://quickicash.blogspot.com/search/label/using' rel='tag'>using</a>, <a href='http://quickicash.blogspot.com/search/label/Website' rel='tag'>Website</a> </span> </div> <div class='post-footer-line post-footer-line-2'> <div id='related-posts'> <script src='/feeds/posts/default/-/Design?alt=json-in-script&callback=related_results_labels&max-results=5' type='text/javascript'></script> <script src='/feeds/posts/default/-/Learn?alt=json-in-script&callback=related_results_labels&max-results=5' type='text/javascript'></script> <script src='/feeds/posts/default/-/Tutorial?alt=json-in-script&callback=related_results_labels&max-results=5' type='text/javascript'></script> <script src='/feeds/posts/default/-/using?alt=json-in-script&callback=related_results_labels&max-results=5' type='text/javascript'></script> <script src='/feeds/posts/default/-/Website?alt=json-in-script&callback=related_results_labels&max-results=5' type='text/javascript'></script> <script type='text/javascript'> var currentposturl="http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html"; var maxresults=5; removeRelatedDuplicates(); printRelatedLabels(); </script> </div> <span class='post-icons'> <span class='item-control blog-admin pid-1169068446'> <a href='https://www.blogger.com/post-edit.g?blogID=4848480680405805635&postID=5163178829811321105&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=4848480680405805635&postID=5163178829811321105&target=email' target='_blank' title='Email This'><span class='share-button-link-text'>Email This</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=4848480680405805635&postID=5163178829811321105&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='BlogThis!'><span class='share-button-link-text'>BlogThis!</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=4848480680405805635&postID=5163178829811321105&target=twitter' target='_blank' title='Share to X'><span class='share-button-link-text'>Share to X</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=4848480680405805635&postID=5163178829811321105&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Share to Facebook'><span class='share-button-link-text'>Share to Facebook</span></a> </div> </div> <div class='post-footer-line post-footer-line-3'><span class='post-location'> </span> </div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> <h4> 0 comments: </h4> <div id='Blog1_comments-block-wrapper'> <dl class='avatar-comment-indent' id='comments-block'> </dl> </div> <p class='comment-footer'> <div class='comment-form'> <a name='comment-form'></a> <h4 id='comment-post-message'>Post a Comment</h4> <p> </p> <a href='https://www.blogger.com/comment/frame/4848480680405805635?po=5163178829811321105&hl=en-GB&saa=85391&origin=http://quickicash.blogspot.com' id='comment-editor-src'></a> <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' width='100%'></iframe> <script src='https://www.blogger.com/static/v1/jsbin/1212307205-comment_from_post_iframe.js' type='text/javascript'></script> <script type='text/javascript'> BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html'); </script> </div> </p> <div id='backlinks-container'> <div id='Blog1_backlinks-container'> </div> </div> </div> </div> <!--Can't find substitution for tag [defaultAdEnd]--> <div class='inline-ad'> <script type="text/javascript"><!-- google_ad_client = "ca-pub-3465918192844702"; google_ad_host = "ca-host-pub-1556223355139109"; google_ad_host_channel = "L0007"; /* quickicash_main_Blog1_300x250_as */ google_ad_slot = "4467885479"; google_ad_width = 300; google_ad_height = 250; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> <!--Can't find substitution for tag [adStart]--> </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='http://quickicash.blogspot.com/2013/06/how-to-change-fonts-text-colour-and.html' id='Blog1_blog-pager-newer-link' title='Newer Post'>Newer Post</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='http://quickicash.blogspot.com/2013/06/bluegriffon-tutorial-how-to-create.html' id='Blog1_blog-pager-older-link' title='Older Post'>Older Post</a> </span> <a class='home-link' href='http://quickicash.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='post-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='http://quickicash.blogspot.com/feeds/5163178829811321105/comments/default' target='_blank' type='application/atom+xml'>Post Comments (Atom)</a> </div> </div> </div></div> <div class='grid_4 omega section' id='sidebar'><div class='widget HTML' data-version='1' id='HTML6'> <div class='widget-content'> <a href="https://twitter.com/PRINCEAWUNI" class="twitter-follow-button" data-show-count="false" data-size="large">Follow @PRINCEAWUNI</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML4'> <div class='widget-content'> <script type="text/javascript"> <!-- var _adynamo_client = "ce1bc55b-9172-41aa-b4e2-f2f0df10c660"; var _adynamo_width = 300; var _adynamo_height = 250; //--> </script> <script type="text/javascript" src="http://static.addynamo.net/ad/js/deliverAds.js"></script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML3'> <h2 class='title'>Template information</h2> <div class='widget-content'> <script type="text/javascript"> <!-- var _adynamo_client = "ce1bc55b-9172-41aa-b4e2-f2f0df10c660"; var _adynamo_width = 300; var _adynamo_height = 250; //--> </script> <script type="text/javascript" src="http://static.addynamo.net/ad/js/deliverAds.js"></script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML5'> <h2 class='title'>Comment</h2> <div class='widget-content'> <script type="text/javascript"> <!-- var _adynamo_client = "ce1bc55b-9172-41aa-b4e2-f2f0df10c660"; var _adynamo_width = 300; var _adynamo_height = 250; //--> </script> <script type="text/javascript" src="http://static.addynamo.net/ad/js/deliverAds.js"></script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML745'> <form action='/search' class='searchform' method='get'> <input class='searchfield' name='q' onblur='if (this.value == '') {this.value = 'Search...';}' onfocus='if (this.value == 'Search...') {this.value = '';}' type='text' value='Search...'/> <input class='searchbutton' type='submit' value='Go'/> </form> </div></div> </div> <div class='clearfix' id='footer-warp'> <div class='grid_4 section' id='footer1'><div class='widget HTML' data-version='1' id='HTML2'> <h2 class='title'>Random post</h2> <div class='widget-content'> <script type="text/javascript" src="http://js.betonmarkets.com/javascript.php?prefix=lrYN07vf8o36lJYWmxbtZGNd7ZgqdRLk&media=66&campaign=1"></script> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML1'> <h2 class='title'>Test Footer</h2> <div class='widget-content'> <a href="http://hidemyass.com/vpn/r11247/" title="Hide My Ass! Pro VPN"><img src="//d1piupybsgr6dr.cloudfront.net/ads/set2/threezerozerotwofifty.gif" alt="HideMyAss.com" /></a> </div> <div class='clear'></div> </div></div> <div class='grid_4 section' id='footer2'><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 expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='http://quickicash.blogspot.com/2013/'> 2013 </a> <span class='post-count' dir='ltr'>(100)</span> <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='http://quickicash.blogspot.com/2013/06/'> June </a> <span class='post-count' dir='ltr'>(100)</span> <ul class='posts'> <li><a href='http://quickicash.blogspot.com/2013/06/bing-wants-to-be-big-search-engine-on.html'>Bing Wants to Be Big Search Engine on Campus</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/microsoft-bing-goes-toe-to-toe-against.html'>Microsoft Bing Goes Toe-to-Toe Against Google</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/facebook-takes-another-step-to-compete.html'>Facebook Takes Another Step to Compete in Search</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/google-q1-earnings-up-as-shift-to.html'>Google Q1 Earnings Up As Shift to Enhanced Campaig...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/microsoft-renames-adcenter-bing-ads.html'>Microsoft Renames AdCenter Bing Ads</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-else-are-you-telling-google-when.html'>What Else Are You Telling Google When You Hit the ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-if-ebay-is-right-and-paid-search.html'>What if eBay Is Right and Paid Search Is Worthless?</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-to-do-if-your-client-site-goes-down.html'>What to Do if Your Client's Site Goes Down</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/where-is-search-heading-check-map.html'>Where Is Search Heading? Check the Map</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/why-facebook-search-will-make-lot-of.html'>Why Facebook Search Will Make a Lot of Money...and...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/why-your-online-marketing-department-is.html'>Why Your Online Marketing Department Is All Screwe...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/youtube-paid-advertising-beginner-guide.html'>YouTube Paid Advertising - a Beginner's Guide</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/12-hidden-pitfalls-in-ppc-campaign.html'>12 Hidden Pitfalls in PPC Campaign Automation</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/12-ppc-resolutions-for-2013.html'>12 PPC Resolutions for 2013</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/2-big-wins-with-enhanced-adwords.html'>2 Big Wins With Enhanced AdWords Campaigns</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/4-ways-to-disaster-proof-your-sem.html'>4 Ways to Disaster-Proof Your SEM Campaigns</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/5-adwordsadcenter-spring-cleaning-tips.html'>5 AdWords/adCenter Spring Cleaning Tips</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/5-free-excel-add-ins-to-help-digital.html'>5 Free Excel Add-Ins to Help Digital Marketers Dec...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/5-reasons-search-marketers-should-watch.html'>5 Reasons Search Marketers Should Watch the Regula...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/5-reasons-sem-agencies-should-do-social.html'>5 Reasons SEM Agencies Should Do Social and SEO</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/5-ways-you-pay-more-for-google-clicks.html'>5 Ways You Pay More for Google Clicks</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/6-reasons-search-clicks-rock.html'>6 Reasons Search Clicks Rock!</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/6-ways-to-survive-ppc-budget.html'>6 Ways to Survive a PPC Budget Sequestration</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/adwords-enhanced-campaigns-new-campaign.html'>AdWords Enhanced Campaigns: New Campaign Checklist</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/applying-big-data-insights-to-ad-copy.html'>Applying Big Data Insights to Ad Copy Strategy: Tr...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/as-buy-funnel-evolves-here-are-4-sem.html'>As the Buy Funnel Evolves, Here Are 4 SEM Metrics ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/breaking-out-of-last-click-attribution.html'>Breaking Out of Last-Click Attribution Toward the ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/building-anti-fragile-ppc-campaign.html'>Building the Anti-Fragile PPC Campaign</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/can-quality-score-be-gamed.html'>Can Quality Score Be Gamed?</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/covario-issues-q4-global-paid-search.html'>Covario Issues Q4 Global Paid Search Spend Analysis</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/debunking-5-myths-of-ppc-advertising.html'>Debunking 5 Myths of PPC Advertising</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/facebook-graph-search-taps-people-power.html'>Facebook Graph Search Taps People Power</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/four-paid-search-takeaways-from-sesny.html'>Four Paid Search Takeaways From #SESNY</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/google-adwords-enhanced-campaign-cpcs.html'>Google AdWords Enhanced Campaign CPCs Grow 6% [Rep...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/google-enhanced-campaigns-and-bid.html'>Google Enhanced Campaigns and Bid Vectors: Switch ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/google-pla-ads-bid-price-vs-product.html'>Google's PLA Ads: Bid Price vs. Product Price vs. ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/guide-to-linkedin-ppc-ads-how-to.html'>Guide to LinkedIn PPC Ads: How to Succeed in 2013</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-create-adwords-action-plan-from.html'>How to Create an AdWords Action Plan From Purchase...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-plan-ppc-advertising-for-new-year.html'>How to Plan PPC Advertising for the New Year</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/marin-logs-state-of-global-search.html'>Marin Logs State of Global Search Marketing</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/ppc-for-b2b-on-linkedin-twitter-and.html'>PPC for B2B on LinkedIn, Twitter, and Facebook</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/prepare-your-online-advertising-for.html'>Prepare Your Online Advertising for Mobile Holiday...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/rethinking-mobile-search-in-light-of.html'>Rethinking Mobile Search in Light of New Data From...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/the-big-secret-to-quality-score.html'>The Big Secret to Quality Score</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/the-great-enhanced-campaigns-war-of.html'>The Great Enhanced Campaigns War of 2013: The Surp...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/tips-to-streamline-google-adwords-for.html'>Tips to Streamline Google AdWords for Small Business</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/video-cpe-ads-in-serp.html'>Video CPE Ads in the SERP?</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-is-good-click-through-rate-for-ppc.html'>What Is a Good Click-Through Rate for PPC?</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/why-marketers-should-care-about-tax.html'>Why Marketers Should Care About Tax Refunds</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/your-holiday-ppc-strategy-for-2012-yes.html'>Your Holiday PPC Strategy for 2012: Yes, It's Changed</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/affiliate-marketing-business-using-cpa.html'>Affiliate Marketing Business Using Cpa Offers And ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-affiliate-feed-can-do-for-your.html'>What An Affiliate Feed Can Do For Your Business</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/using-residual-income-affiliate.html'>Using Residual Income Affiliate Programs To Build ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/5-steps-advanced-affiliate-strategies.html'>5 Steps Advanced Affiliate Strategies Affiliate P...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/dot-com-pho-instant-orgasm-edition.html'>Dot Com Pho – Instant Orgasm Edition</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/cashunclaimed-utilizes-affiliate.html'>Cashunclaimed Utilizes Affiliate Marketing To Incr...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/affiliate-online-marketing-success.html'>Affiliate Online Marketing Success Strategy Onlin...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/begin-webstore-without-difficulty-with.html'>Begin A Webstore Without Difficulty With The Use O...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/ways-of-making-affiliate-sales-from.html'>Ways Of Making Affiliate Sales From Your Affiliate...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/why-not-take-your-blog-to-top-its-choice.html'>Why Not Take Your Blog To The Top? It’s A Choice!</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-earn-with-affiliate-feed.html'>How To Earn With An Affiliate Feed</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/multi-level-marketing-reliable-and.html'>Multi-level Marketing, Reliable And Trusted Money ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/greatest-challenges-to-affiliate.html'>Greatest Challenges To Affiliate Programs Beginners</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/affiliate-business-program-success.html'>Affiliate Business Program Success Strategies And ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/an-affiliate-feed-can-be-beneficial-for.html'>An Affiliate Feed Can Be Beneficial For Your Inter...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-is-forex-affiliate-program.html'>What Is A Forex Affiliate Program?</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/you-can-make-money-with-clickbank.html'>You Can Make Money With Clickbank</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/driving-with-john-chow-episode-5-going.html'>Driving with John chow – Episode 5 Going To The Po...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/the-10-most-important-things-to-know.html'>The 10 Most Important Things to Know About Email M...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/itwin-secureboxdesigned-hardware-key.html'>iTwin SecureBox,Designed Hardware Key-Based Securi...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/affiliate-money-making-program-guide-in.html'>Affiliate Money Making Program Guide In Ensuring Y...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/serious-marketersmonetized-mobile-with.html'>Serious Marketersmonetized Mobile With Txtworx</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/home-business-summit-attendee.html'>Home Business Summit Attendee Information</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/driving-with-john-chow-episode-6.html'>Driving with John Chow – Episode 6 WordPress for B...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/online-affiliate-marketing-success-tips.html'>Online Affiliate Marketing Success Tips That Inter...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/ginger-health-benefits.html'>Ginger Health Benefits</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/4-steps-advanced-affiliate-strategies.html'>4 Steps Advanced Affiliate Strategies Affiliate P...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-is-social-plus-how-to-use-social.html'>What is Social plus – How to use social plus</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/products-for-sale-on-web-by-making-use.html'>Products For Sale On The Web By Making Use Of An A...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-make-create-your-own-website.html'>How to Make / Create Your Own Website: The Beginne...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-banks-need-to-know-before-getting.html'>What Banks Need to Know Before Getting a New Domai...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-change-background-colour-and-set.html'>How to Change the Background Colour and Set a Back...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/dreamweaver-tutorial-how-to-design.html'>Dreamweaver Tutorial: How to Design a Website with...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-change-fonts-and-text-colour-on.html'>How to Change the Fonts and Text Colour on Your We...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-is-html-css-javascript-php-and.html'>What is HTML, CSS, JavaScript, PHP and Perl? Do I ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-difference-between-content.html'>What's the Difference Between a Content Management...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/what-is-mysql-what-is-database-what-is.html'>What is MySQL? What is a Database? What is SQL?</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-add-contact-form-web-form-to.html'>How to Add a Contact Form (Web Form) to Your Websi...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/the-pros-and-cons-of-using-online-blog.html'>The Pros and Cons of Using an Online Blog Software...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/dreamweaver-cs55-tutorial-how-to-design.html'>Dreamweaver CS5.5 Tutorial: How to Design a Websit...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-change-fonts-text-colour-and.html'>How to Change Fonts, Text Colour and Size with Dre...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html'>HTML Tutorial - Learn to Design a Website using HTML</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/bluegriffon-tutorial-how-to-create.html'>BlueGriffon Tutorial: How to Create a Website with...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-change-fonts-text-size-and-text.html'>How to Change Fonts, Text Size and Text Colour in ...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-change-your-words-and-images.html'>How to Change Your Words and Images into Clickable...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/should-i-learn-html-or-just-use-wysiwyg.html'>Should I Learn HTML or Just Use a WYSIWYG Web Edit...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-customize-navigation-menu-on.html'>How to Customize the Navigation Menu on Your Websi...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-efficiently-manage-multi-page.html'>How to Efficiently Manage a Multi-Page Website wit...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-reserve-domain-name-do-you-need.html'>How to Reserve a Domain Name. Do You Need a Web Ho...</a></li> <li><a href='http://quickicash.blogspot.com/2013/06/how-to-insert-images-into-your-website.html'>How to Insert Images into Your Website with Dreamw...</a></li> </ul> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div></div> <div class='grid_4 omega section' id='footer3'><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' href='https://www.blogger.com/profile/00731209254515616404' rel='author'> Unknown </a> </dt> </dl> <a class='profile-link' href='https://www.blogger.com/profile/00731209254515616404' rel='author'>View my complete profile</a> <div class='clear'></div> </div> </div><div class='widget Stats' data-version='1' id='Stats1'> <h2>Template Hits</h2> <div class='widget-content'> <div id='Stats1_content' style='display: none;'> <script src='https://www.gstatic.com/charts/loader.js' type='text/javascript'></script> <span id='Stats1_sparklinespan' style='display:inline-block; width:75px; height:30px'></span> <span class='counter-wrapper text-counter-wrapper' id='Stats1_totalCount'> </span> <div class='clear'></div> </div> </div> </div></div> </div> <div class='clearfix grid_12' id='credits'> <p style='float:left;'>© 2011 <strong>BLOG MONEY</strong>, AllRightsReserved.</p> <!-- Humble Request:: Please Do not remove these Designer Link and Support the Designer. Thank You!! --> <p style='float:right;'>Designed by <a href='http://www.screenwritersarena.com/' title='Screenwriting And Screenwriters-Script Writing,Film Making '>ScreenWritersArena</a></p> </div> <div style='clear:both;'></div> </div> <div style='clear:both;'></div> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/3878540743-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY44ZCVYICP3mbusUNKrjunsOKm70w:1759612344286';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d4848480680405805635','//quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html','4848480680405805635'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '4848480680405805635', 'title': 'BLOG MONEY', 'url': 'http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html', 'canonicalUrl': 'http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html', 'homepageUrl': 'http://quickicash.blogspot.com/', 'searchUrl': 'http://quickicash.blogspot.com/search', 'canonicalHomepageUrl': 'http://quickicash.blogspot.com/', 'blogspotFaviconUrl': 'http://quickicash.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-GB', 'localeUnderscoreDelimited': 'en_gb', '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\x22BLOG MONEY - Atom\x22 href\x3d\x22http://quickicash.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22BLOG MONEY - RSS\x22 href\x3d\x22http://quickicash.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22BLOG MONEY - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/4848480680405805635/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22BLOG MONEY - Atom\x22 href\x3d\x22http://quickicash.blogspot.com/feeds/5163178829811321105/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-3465918192844702', '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/00d5921fb137c39b', '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': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', '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_GB\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'item', 'postId': '5163178829811321105', 'postImageUrl': 'c:\\Program%20Files\\CartyStudios%20Corporation\\WebMagnates%20-%20Auto%20Blogging%20Software\\data\\GET%20BLOGGING\\cam\\', 'pageName': 'HTML Tutorial - Learn to Design a Website using HTML', 'pageTitle': 'BLOG MONEY: HTML Tutorial - Learn to Design a Website using HTML'}}, {'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': 'HTML Tutorial - Learn to Design a Website using HTML', 'description': ' by Christopher Heng, thesitewizard.com All web pages that you see on the Internet use HTML to format its pages for display in a web browse...', 'featuredImage': 'c:\\Program%20Files\\CartyStudios%20Corporation\\WebMagnates%20-%20Auto%20Blogging%20Software\\data\\GET%20BLOGGING\\cam\\', 'url': 'http://quickicash.blogspot.com/2013/06/html-tutorial-learn-to-design-website.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 5163178829811321105}}]); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'headerw grid_12', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList1', 'menuw', document.getElementById('PageList1'), {'title': 'Pages', 'links': [{'isCurrentPage': false, 'href': 'http://quickicash.blogspot.com/', 'title': 'Home'}, {'isCurrentPage': false, 'href': 'http://quickicash.blogspot.com/p/blog-page.html', 'id': '4453139376187525522', 'title': 'ABOUT US'}, {'isCurrentPage': false, 'href': 'http://quickicash.blogspot.com/p/contact-us.html', 'id': '7120886310244225186', 'title': 'CONTACT US'}, {'isCurrentPage': false, 'href': 'http://quickicash.blogspot.com/p/blog-page_8.html', 'id': '8893304969554710750', 'title': 'PRODUCTS \x26 SERVICES'}, {'isCurrentPage': false, 'href': 'http://quickicash.blogspot.com/p/blog-page_9799.html', 'id': '5062976490709329085', 'title': 'PRIVACY STATEMENT'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'content', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/3568137000-lbx__en_gb.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/828616780-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'sidebar', document.getElementById('HTML6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'sidebar', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'sidebar', document.getElementById('HTML3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'sidebar', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML745', 'sidebar', document.getElementById('HTML745'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'footer1', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'footer1', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'footer2', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'footer3', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_StatsView', new _WidgetInfo('Stats1', 'footer3', document.getElementById('Stats1'), {'title': 'Template Hits', 'showGraphicalCounter': false, 'showAnimatedCounter': false, 'showSparkline': true, 'statsUrl': '//quickicash.blogspot.com/b/stats?style\x3dBLACK_TRANSPARENT\x26timeRange\x3dALL_TIME\x26token\x3dAPq4FmC0xsAGKGQyaPkURPb71zUumi9jUh4U4r3SQPUx3e8Hz76GmmT8b-btuYQpn37v45c0SSmvQ6RXBDqppAIvwcKT6NUMbA'}, 'displayModeFull')); </script> </body> </html>