Demo:RawHTML

From PKC
Revision as of 05:07, 1 July 2021 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<html> <head>

<title>Our first HTML page</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

</head> <body>

Welcome to the web site: this is a heading inside of the heading tags.

This is a paragraph of text inside the paragraph HTML tags. We can just keep writting ...

This is another heading inside of another set of headings tags; this time the tag is an 'h3' instead of an 'h2' , that means it is a less important heading.

Yet another heading - right after this we have an HTML list:

  1. First item in the list
  2. Second item in the list
  3. Third item in the list

You will notice in the above HTML list, the HTML automatically creates the numbers in the list.

About the list tags

HTML list tags are a little more complex than the other tags we have seen thus far.

HTML list come in two flavors: ordered and unordered. Ordered list tags (

    ) automatically inserts the right numbers for each of the list items (
  1. ), where as the unordered list tag (
      ) inserts bullets.

      • First item in the list
      • Second item in the list
      • Third item in the list


      Now the most important HTML tag there is: the link tag!

      This another web site worth visiting: <a href="http://www.killersites.com">www.killersites.com: Web design tutorials and forums</a>

      </body> </html>