HTML Tutorial:

-HTML is the standard markup language for Web pages.
-With HTML you can create your own Website.
-HTML is easy to learn - You will enjoy it!



HTML Introduction:

HTML is the standard markup language for creating Web pages.

What is HTML?
-HTML stands for Hyper Text Markup Language
-HTML is the standard markup language for creating Web pages
-HTML describes the structure of a Web page
-HTML consists of a series of elements
-HTML elements tell the browser how to display the content
-HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link".


...


HTML Elements:

The HTML element is everything from the start tag to the end tag:


Tagname:

Content goes here...


Examples of some HTML elements:

h1:My First Heading

p:My first paragraph.




HTML Attributes:

-All HTML elements can have attributes
-Attributes provide additional information about elements
-Attributes are always specified in the start tag
-Attributes usually come in name/value pairs like: name="value"

The href Attribute:

...


HTML Style:

The HTML Style Attribute:
-Setting the style of an HTML element, can be done with the style attribute.


...


HTML Table:

-HTML tables allow web developers to arrange data into rows and columns.
Define an HTML Table?
-A table in HTML consists of table cells inside rows and columns.


...