Monday, March 30, 2015

HTML Lesson 9 : Forms

The form element creates a form for user input. A form can contain textfields, checkboxes, radio-buttons and more. Forms are used to pass user-data to a specified URL.

 Request for HTML Lesson 9

HTML Lesson 8 : Styles Sheet

When a browser read a style sheet, it will format the document according to it.

There are 3 ways of inserting a style sheet:
  • External style sheet
  • Internal style sheet
  • Inline styles
 Request for HTML Lesson 8

HTML Lesson 7 : Frames

With frames, you can display more than one HTML document in the same browser window. Each HTML document is called a frame, and each frame is independent of the others.

L Disadvantage of using frame are:
- The web developer must keep track of more HTML documents.
- It is difficult to print entire page.

 Request for HTML Lesson 7

HTML Lesson 6 : Tables

Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). The letters td stands for "table data," which is the content of a data cell. A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, etc.

 Request for HTML Lesson 7

Sunday, March 29, 2015

HTML Lesson 5 : Lists

HTML supports ordered, unordered and definition lists.
An ordered list is also a list of items. The list items are marked with numbers.
An unordered list is a list of items. The list items are marked with bullets (typically small black circles).
A definition list is not a list of items. This is a list of terms and explanation of the terms.

 Request for HTML Lesson 5

Saturday, March 28, 2015

HTML Lesson 4 : Images and Links

Image:
In HTML, images are defined with the <img> tag.
The <img> tag is empty, which means that it contains attributes only and it has no closing tag.
To display an image on the page, you need to use the src attribute. Src stands for “source”. The value of the src attribute is the URL (Uniform Resource Location) of the image you can display on your page.
Links:
HTML uses the <a> (anchor) tag to create a link to another document.
An anchor can point to any resource on the web: an HTML page, an Image, a sound file, a movie etc.

 Request for HTML Lesson 4
Thank you for your interest reading my lesson.

HTML Lesson 3 : Character Entities

Before starting this lesson, please consider the following cases:

Some characters like the < character, have a special meaning in HTML, and therefore cannot be used in the text.
To display less than sign (<) in HTML, we have to use a character entities.
The character entities has three parts: an ampersand (&), an entities name or an # and an entities number, and finally semicolon (;).
To display a less sign in HTML document we must write : &lt; or &#60;
Please read more detail about how to define the character entities in HTML

 Request for HTML lesson 3

Thanks,

HTML Lesson 2 : Formatting HTML

Lesson 2: Formatting HTML

This objective of this lesson is to provide the learner the technique how to format HTML element in order design the web page attractively.

The content of this lesson as the following:

  • Formatting Background
  • Text Formatting
  • Paragraph Formatting
  • Font Formatting
  • How to make text animation
  • Formatting Heading

 Request for HTML lesson 2

Please enjoy your reading.

Thanks,

HTML Lesson 1: Introduction to HTML

Greeting to start lesson 1: Introduction to HTML

This lesson is about the introduction to HTML for those learners who start studying about how to create a website.

One of the best thinks about the world wide web is that it’s just as easy to create web page as it is to brow them. The key to publishing on the web is having a firm understanding of Hyper-Text Makeup Language (HTML).

The lesson contains the generality of Internet, where to write HTML code, aspect of HTML, how to save HTML file, how to open HTML file and how to edit HTML file.

Request for HTML lesson 1