Have an account? Sign in
Login  Register  Facebook
This Page is Under Construction! - If You Want To Help Please Send your CV - Advanced Web Core (BETA)
[Edit] What is HTML?
Let ’ s have a look at a very simple web page.
example
<html>
<head>
    <title> Popular Websites: Google </title>
</head>
    <body>
        <h1> About Google </h1>
        <p> Google is best known for its search engine, although
        Google now offers a number of other services. </p>
        <p> Google’s mission is to organize the world’s
        information and make it universally accessible and
        useful. </p>
        <p> Its founders Larry Page and Sergey Brin started
        Google at Stanford University. </p>
    </body>
</html>

Try it yourself »Click on the "Try it yourself" button to see how it works

This may look a bit confusing at first, but it will all make sense soon. As you can see, there are several sets of angle brackets with words or letters between them, such as < html > , < head > , < /title > , and < /body > . These angle brackets and the words inside them are known as tags , What is HTML? It is a special kind of text document that is used by Web browsers to present text and graphics. The text includes markup tags such as <p> to indicate the start of a paragraph, and </p> to indicate the end of a paragraph. HTML documents are often refered to as "Web pages". The browser retrieves Web pages from Web servers that thanks to the Internet, can be pretty much anywhere in World. This page will teach you how to:
  • start with a title
  • add headings and paragraphs
  • add emphasis to your text
  • add images
  • add links to other pages
  • use various kinds of lists
September 19, 2011