This tutorials shows you the basic knowledge for HTML coding. Tools you need for HTML programming is the normal Notepad from windows! just save as htmltitel.html First we look at a simple code:
The commands (also called TAGS) for the browser (Opera, IE, etc.) are in those < > brackets, he reads till the stop command </ > pretty simple!
<HTML>...</HTML> tells the browser that the HTML code starts, that's the most important thing in HTML coding :). <HEAD>...</HEAD> this is the part where you can modify parts of the HTML code, with CSS or Javascript, so not that important now, you dont need it yet.<BODY>...</BODY> the Body part is what you can see with a browser, the text, the pics and the whole rest!
Some HTML tags and their function: <B>...</B> Bold Text
<I>...</I> Italic Text
<H1>...</H1> Heading 1 (H1, H2...H6)
<BR> Line Break, you have to tell the browser to go to the next line!
Example:
HTML Code
Is Very Simple
You Just Have to Understand It!!
We created two different headings, a bold text part then a line break followed by a normal text and an italic text. Pretty simple!
You can also put one command in another one: