HTML

 

List of Unicode

Unicode:- An international encoding standard for use with different languages and scripts, by which each letter, digit, or symbol is assigned a unique numeric value that applies across different platforms and programs. Unicode is a character encoding standard that has widespread acceptance. … They store letters and other characters by assigning a number for each one. Before Unicode was invented, there were …

List of Unicode Read More »

Drop down Lists in HTML5

Create Drop down Lists in HTML5 The drop down lists is another way to give the user the opportunity to choose just one of a series of choices. Normally the first item in the dropdown list is selected by default.The drop down lists are defined by the <select> element and the values being sent either via email …

Drop down Lists in HTML5 Read More »

Why HTML ?

As the HTML is a very easy language for creating the web pages. It can be learned in few hours or in few days. It is the basic format of the HTML file it can be displayed on mostly operating system which supports the web browser. With the help of HTML you can easily create …

Why HTML ? Read More »

Basics of HTML

1. HTML stands for Hyper Text Markup Language. 2. An HTML file is a text file containing small markup tags. 3. The markup tags tell the Web browser how to display the page. 4. An HTML file must have an htm or html file extension. An HTML file can be created using any simple text …

Basics of HTML Read More »

Introduction of HTML Tag

HTML Tags are the reserve keywords used in the HTML file. With the help of tags we can set the format of the text and elements used in the file. Example: Setting the font, size, color, bold, italic, Underline to the text. In HTML language all of the files are written using tags. Even starting …

Introduction of HTML Tag Read More »

Basic HTML Tags

The most important tags in HTML are tags that define headings, paragraphs, body and line breaks. The basic HTML Tags are described here in the form of table so that you can remind them easily.   Basic HTML Tags   Tag Description <html> Defines an HTML document <head> Defines information about the document <title> Defines …

Basic HTML Tags Read More »

Character Format Tags

These tags are used for the formatting of the text such as underline, bold, italic, font, size, color of the text.   All these character formatting Tags are defined in the table shown below:   Char Format Tag Description <b> Displays bold text <i> Displays italic text <tt> Renders as teletype or mono spaced text …

Character Format Tags Read More »

Output Tags

These tags are often used to display computer/programming code. You might be surprised for “how to display the text containing the spaces, line breaks, programming codes, sample text, define variable”. Do not worry, because in this chapter we are going to show you how easily you can do easily.   So lets start with these …

Output Tags Read More »

Block Tags

Tag Description <acronym> Defines an acronym <abbr> Defines an abbreviation <address> Defines an address element <blockquote> Defines an long quotation <center> Defines centered text <q> Defines a short quotation <cite> Defines a citation <ins> Defines inserted text <del> Defines deleted text <s> Defines strikethrough text <strike> Defines strikethrough text   <acronym>..text..</acronym>Tag The tag defines the …

Block Tags Read More »

Other Tags

he <style> tag The <style> tag defines a style in a document.   The style element goes in the head section. If you want to include a style sheet in your page, you should define the style sheet externally, and link to it using <link>. Using this tag you can initialize the text properties as …

Other Tags Read More »

Tags Summary

Tags Ordered Alphabetically   Tags Description <!–…–> Defines a comment <a> Defines an anchor <abbr> Defines an abbreviation <acronym> Defines an acronym <address> Defines an address element <area> Defines an area inside an image map <b> Defines bold text <bdo> Defines the direction of text display <big> Defines big text <blink> Defines the blinking text …

Tags Summary Read More »

Introduction Of HTML Color

These are the colors used in the Html Here colors are defined using a hexadecimal notation for the combination of Red, Green, and Blue color values (RGB). The lowest value that can be given to one light source is 0 (hex #00). The highest value is 255 (hex #FF).   We write the Hex color …

Introduction Of HTML Color Read More »

Different Color Review

This table shows the result of combining Red, Green, and Blue light sources:   Color Color HEX Color RGB   #000000 rgb(0,0,0)   #FF0000 rgb(255,0,0)   #00FF00 rgb(0,255,0)   #0000FF rgb(0,0,255)   #FFFF00 rgb(255,255,0)   #00FFFF rgb(0,255,255)   #FF00FF rgb(255,0,255)   #C0C0C0 rgb(192,192,192)   #FFFFFF rgb(255,255,255)     More Colors This 216 cross platform web …

Different Color Review Read More »

Introduction Of HTML List

In HTML there are three types of list ordered, unorered and definition lists. With the name itself you might be understanding that what is list. Yes you are thinking in the right way.   It is the list of anything e.g. list of items, list of books.   Hope now you are clear about the …

Introduction Of HTML List Read More »

Unordered Lists

An unordered list is a list of items. The list items are marked with bullets (typically small black circles), it does not have numbers in the list. An unordered list starts with the <ul> tag and end with </ul>. list items are defined in between <ul> &</ul>. Each list item is surrounded by the <li> …

Unordered Lists Read More »

Ordered List

Ordered List In  HTML Ordered List An ordered list is also a list of items. The list items are marked with numbers not with the bullets.   An ordered list starts with the <ol> tag and end with </ol>. list items are defined in between <ol> & </ol>. Each list item is surrounded by the …

Ordered List Read More »

Definition List

A definition list is not a list of items. This is a list of terms and explanation of the terms. A definition liststarts with the <dl> tag. Each definition-list term starts with the <dt> tag. Each definition-list definition starts with the <dd> tag. Inside a definition–list definition (the <dd> tag) you can put paragraphs, line …

Definition List Read More »

Example For HTML List

Now lets do some Practical.   Just write/copy this example on any text editor new file and save the file and open in the browser and see how it looks.   Example: <html> <head> <title> Lists </title> </head> <body> Unordered List <ul> <li>Text Book</li> <li>Note Book</li> </ul> Ordered List with numbers <ol> <li>Text Book</li> <li>Note …

Example For HTML List Read More »

Hyperlinks In HTML

So lets start with the hyperlinks or the just call them “links”. Ok you just think for a minute that what may be the meaning of the links in your point of view. Yes again you are going in the right direction. Links means “connection between the two things” might it be any thing. Be …

Hyperlinks In HTML Read More »

Hyperlinks

So lets start with the hyperlinks or the just call them “links”. Links means “connection between the two things” might it be any thing. Be two Persons, Roads or two computers. And the links provide the facility or path between two things through which we can go from one to another.   In the same …

Hyperlinks Read More »

Scroll to Top