Learning HTML

A tutorial that TJ (TPJ Development made). You can find his tutorial, here. Thank him for writing it, and well…take it…duh…

_______________________________________________________________ 

Here is a document to EagleVision that he requested.

All documents must contain this when you begin working:
=======================================================

<html>
<head><title>My website</title></head>
<body>

</body bgcolor=”white” text=”black” link=”blue” vlink=”purple” alink=”red”>
</html>

Try saving this into test.htm and visit it in a browser to
view the text “…”. It is between <body> and </body> that we
want to put the page contents. Change the text between
<title> and </title> to change the page title. You can change
the colors in the document by replacing the strings in the
“body” tag.

Commands that you can use (try putting them all into a document!)
==================================================================

<h1>large header</h1>
<h2>medium header</h2>
<h3>small header</h3>
<marquee>scrolling text</marquee>
<a href=”www.tpjdevelopment.co.nr”>Link that opens in the same window or tab</a>
<a href=”www.tpjdevelopment.co.nr” target=”_blank”>Link that opens in another window or tab</a>

==============================================================
So, our test document would be (go ahead and save it!):

<html>
<head><title>Test document</title></head>
<body>
<h1>large header</h1>
<h2>medium header</h2>
<h3>small header</h3>
<marquee>scrolling text</marquee>
<a href=”www.tpjdevelopment.co.nr”>Link that opens in the same window or tab</a>
<a href=”www.tpjdevelopment.co.nr” target=”_blank”>Link that opens in another window or tab</a>
</body bgcolor=”white” text=”black” link=”blue” vlink=”purple” alink=”red”>
</html>

Written by me.

2 Responses to “Learning HTML”

  1. Thord Johansson Says:

    I seem to have forgotten this:
    You will need to use for line breaks (very important!) and for paragraphs.
    Here is an example where I am using both the line break command and the paragraph:
    This is the content of the paragraphand this is line two.
    That’s just a small add. Have fun! :)

  2. eaglevisionproductions Says:

    Thanks…but I’ll leave it in the comments. :P

    Cheers!

Leave a Reply