Tutorial in the ‘Learn HTML’ Category

HTML Introduction | HTML Definition

HTML Introduction HTML Introduction HTML is a language used to write web page code. A webpage is having a unique URL (or address) on the internet. HTML full form is Hyper Text Markup Language in other word HTML is a Abrivation of Hyper Text Markup Language. Every web page on the internet is coded in HTML language […]

HTML Page Structure | Basic Web Page Syntax Format

html Structure HTML Page Structure HTML Page Structure is nothing but the web page format ideally every page should look like. Basic Structure of HTML page is actually created with some basic HTML tags like <html>, <head>, <body>, and <title> tags. Example 1 – HTML Basic Page format or HTML page normal syntax is given below. The […]

History of HTML | Latest Version HTML5

History of HTML The journey of HTML is started from 1989 when Tim Berners-Lee work on the development of www. The first Specifications of HTML is introduced in 1991 by Tim Berners-Lee, at that time the HTML language features are very basic, called HTML 1.0. HTML Version List HTML 1.0 was just developed to have […]

HTML Doctype Declaration | DTD definition in HTML5

HTML Doctype Declaration HTML Doctype is an instruction to the browser to display the page according to the version of HTML. It must be on top of the page, means it must be first statement in any HTML web page. Syntax in HTML5 is <!DOCTYPE html>. Warning: HTML Doctype Declaration is the first line of […]

HTML Attributes & Tags Definition Meaning

HTML Attributes HTML Attributes HTML Attributes supply additional information to the HTML tag. Many times it is used to enhance the capability, look and feel of the HTML Elements. HTML Attributes Definition It is also considered as parameter of HTML tag. The attribute in HTML is used to provide value to some setting required to the HTML […]

HTML Tags | Basic HTML Elements Definition

HTML Tags HTML Elements HTML Tags HTML Tags is the basic building block used to markup the content in the HTML web page document. <h1> tag is used to display some text in big and bold text on the web page. <h1> Tag Description The above h1 example have content, opening h1 tag (<h1>) and closing h1 tag (</h1>). […]

HTML Paragraph | P HTML Tag

Paragraph Tag- In HTML. HTML Paragraph Tag P HTML tag is used to define the Paragraph elements. This HTML Tag is used to write the paragraph in the web page. HTML Paragraph is represent by the <p> tag. you have to just use <p> </p> inside the body tag and write multiple lines inside this paragraph tag. Example – […]

HTML Heading | HTML h1 Tag

HTML h1 Tag HTML Heading-Tag HTML Heading HTML Heading Tags are used to write the heading of the articles. HTML Headings are the six level headings. HTML Headings are described by the tag <h1> to <h6> tag. If You want to describe the headings or sub-headings about a topic than you can use this tags. Where <h1> describe the most […]

HTML Link | HTML a Tag

HTML Link Tag HTML Link tag is used to insert link or hyperlink in any HTML web page document. The a tag is a paired tag, means it is having content and as well as opening and closing tag. When user click on the contents of the HTML a element the browser opens the new […]

HTML List Tag | HTML Types Of Lists

HTML List Tag HTML Types Of Lists What is HTML List HTML List Tag is used to represent the data in the formate of the list. HTML Types Of Lists are shown in the bullets or number formate. example – Bulleted List This above code shows that how can you write any data into the bulleted list. List Tag example – Numbered […]

HTML Unordered List | HTML ul

HTML Unordered List, HTML ul HTML Unordered List HTML Unordered List is used to insert the data into the bullets formate. It is also known as bullet lists or HTML ul. HTML Unordered List This above code shows that how can you write any data into the bullets formate. And this is the default formate of >ul< list. HTML ul […]

HTML Ordered List | HTML OL

HTML Ordered List HTML ol HTML Ordered List HTML Ordered List is used to insert the data into the numeric or numbers formate. It is also known as numbered lists or HTML OL. It is have a particular order. In Other words Ordered List are the Number List means every element of the order list are specified with the sequential […]

HTML Image | HTML Img Tag

HTML Image Tag HTML Image HTML Image tag is used to link the image in to the web page. The images were not embedded into the HTML page, they were linked in the HTML pages. That’s why the attributes will be required. HTML Image Tag The above syntax is used to linked the image. Caution:HTML image <img> tag […]

HTML Comment Tag | Comment in HTML

HTML Comment Tag Comment in HTML HTML Comment Tag HTML Comment Tag is used to make a part of code which is ignored by the web browser. And browser will not display that part of code but the code is visible in the code section. Comment in HTML syntax The main use of HTML comment in code is to create the […]

HTML Inline Style | HTML Style Attribute

HTML Inline Style CSS HTML Inline Style It is a technique to change the default look and feel of the HTML element. Actually every browser having some default style of every HTML element, and if you are not providing the CSS to any HTML element browser will use their own style to that element. It means we are providing […]

HTML Table | Table Tag Example

HTML Table With Heading HTML Table HTML Tables are used to arranging the data into the row and column formate. In other word HTML Table create the tabular form of data. HTML Table structure consists 3 tags that is <table>, <tr> and <td>. Where <table> tag is the starting tag, <tr> tag defines the table row and <td> defines […]

HTML Div Tag | Div in HTML

HTML Div Tag Div in HTML HTML Div Tag HTML Div Tag is a container HTML tag, It is used to group some HTML element together. Div is used to logically divide HTML document into small boxes. Div tag is actually used to control the layout of page structure. HTML Div tag is also used to specify the CSS style in […]

HTML Image Link | Hyperlink HTML Image to URL

HTML Image Link Hyperlink Image HTML HTML Image Link | Link Image to URL HTML Image Link is used to transforming an image into a link. Because to make an image as click-able image. When you move your mouse pointer than pointer will convert into hand symbol. You have to just put the image source inside the <img> tag and than […]

HTML Span Tag | Span Element in HTML

HTML Span Tag Span Element in HTML HTML Span Tag HTML Span Tag is a inline container element and mostly used to give special design style to the inline text. Span Element in HTML is mainly used to bold, italic or underline some part of text in a paragraph. There are two types of element in HTML, inline and block element. There […]

Block And Inline Elements | Inline vs Block Level Elements

Block Level and Inline HTML Elements Example Block And Inline Elements The browser display every HTML element in one of the two methods, inline and block element. There is a display CSS property, which actually controls the display of the element in the web browser. Every HTML element have default display setting value. The Block element uses complete horizontal (browser width direction) […]

HTML Text Formatting | HTML Formatting Tags

HTML Text Formatting HTML Text Formatting HTML Text Formatting is used to style the text into different design specification. By the use of the HTML Formatting Tags we can style the text. <b>, <i>, <u>……..etc these are the some HTML Tags which are used for the designed the text. These HTML Formatting Tags, are mostly used to show […]

HTML pre Tag | Element

HTML pre Tag HTML pre HTML pre Tag HTML <pre> tag means predefined tag. When you write any paragraph in the HTML document, than you use the <p> tag to write any paragraph. But in the <p> tag all the spaces, new lines and tabs was removed. If you want to write any paragraph that have more space, and start […]

HTML Form Tag | action target attribute

HTML Form Action Attribute HTML Form Tag HTML Form is used to take the input from the user. The <form> tag is used to create the Form. An HTML Form contains other HTML form Elements like input tag. There are different types of form child elements, like text, submit and more. Example – A HTML basic Form with text […]

HTML class Attribute | HTML class Style

HTML class Style with Tag Selector HTML class Attribute HTML class Attribute is an another way to identify the HTML element in the HTML web page, to apply CSS style to that particular element. You can define design specification with the style tag in head part of HTML web page. But, when you provide the design specification in the head part, […]

HTML Title Tag

HTML Title HTML Title tag HTML Title Tag HTML Title is an important tag. HTML Title Tag shows the title of the web page which is displayed on the browser title bar. Search Engine uses the content of title element to understand what information or knowledge to delivered in particular web page. To have a batter visibility of your web […]

HTML id Attribute CSS Design Style

HTML id Attribute HTML id Attribute is an another way to uniquely identify the HTML element in the HTML web page, to apply CSS style to that particular element. You can define design specification with the style tag in head part of HTML web page. But, when you provide the design specification in the head […]

HTML Symbols Code

HTML Symbol Entities. HTML symbols like mathematical operators, arrows, technical symbols and shapes, are not present on a normal keyboard. To add these symbols to an HTML page, you can use the HTML entity name. HTML Symbols code HTML Symbol Entities HTML entities were described in the previous chapter. Many mathematical, technical, and currency symbols, […]
Learning & Certifications
Follow Us
Facebook Icon   Linked In Icon   Twitter Icon  
Validation and Recognition

Valid CSS! Valid HTML5!          Protected by Copyscape