Difference between revisions of "Demo:RawHTML"
Jump to navigation
Jump to search
(Created page with "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Our first HTML page</title> <meta http-equiv="Content-Type" c...") |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<html> | <html> | ||
<head> | <head> | ||
Line 10: | Line 9: | ||
<body> | <body> | ||
< | <h1>Welcome to the web site: this is a heading inside of the heading tags.</h1> | ||
<p>This is a paragraph of text inside the paragraph HTML tags. We can just keep writting ... | <p>This is a paragraph of text inside the paragraph HTML tags. We can just keep writting ... | ||
</p> | </p> | ||
<h3> | <h3> |
Latest revision as of 05:07, 1 July 2021
<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:
- First item in the list
- Second item in the list
- 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 (
- ), 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>