Introduction to HTML
Learn Web Designing Using HTML
Before directly start to make a website, we must have to know what is HTML, it's Tags, Tags features and uses, etc. So let's start:
HTML: HTML Stands for Hypertext markup language. HTML is a language used to make web pages. It provides a number of commands that can be used to place and format text, pictures and sounds on web pages. These commands are known as Tags or markup.
In hypertext markup language. Text has a link within it is a hypertext. A markup language is a programming language that is used to make text more interactive and dynamic . It can turn a text into links tables etc.
Common TAGS Used in HTML:
Starting Tag | Ending, Tag | Meaning |
Skeletal Tags | ||
<html> | </html> | Defines an HTML document. |
<head> | </head> | Defines head of the document. |
<body> | </body> | define the body of the document. |
Tital and Header Tag | ||
<title> | </title> | Define the title of the document. |
<Hn> | </Hn> | Define the header (n is integer). |
Text Formatting Tags | ||
<b> | </b> | Bold face. |
<i> | </i> | Italic. |
<u> | </u> | Underline. |
<sup> | </sup> | Superscript. |
<sub> | </sub> | Subscript. |
Data Flow Tags | ||
< center> | </center> | Centred. |
<br> | </br> | Line break. |
List Tags | ||
<ol> | </ol> | Ordered list. |
<ul> | </ul> | Unordered list. |
<li> | </li> | List item. |
Image Tag | ||
<img> | Do not have closing tag. | Defines an image. |
Hyperlink Tag | ||
<a> | </a> | Defines an address. |
Executable Content | ||
<appet> | </appet> | The document in an object. |
Now you are familiar with the html tags used to create a web page. Now it's time to start. Let's start with a simple web page, click the button below:
Comments
Post a Comment