HTML

HTML Intro

HTML Intro Quiz

HTML Intro Exercise

HTML Basics

HTML Basic Quiz

HTML Basic Exercise

HTML Advance

HTML Advance Quiz

HTML Advance Exercise

HTML Tags List

HTML Global Attributes

HTML Attributes

FAQs

HTML Basics

List of HTML Basics

Headings
HTML Headings h1,h2,h3,h4,h5,h6 PRHOCIDNG
Horizontal Lines
Horizontal Row hr HTML PRHOCODING
Comments
HTML COMMENTS
The p Tag
P tag is used for paragrapgh purpose in html PRHOCIDNG
Line Break
Line break is used to break the content. Described as br
Multiple Line Breaks
We can use multiple line breaks in. It only purpose is to break the content into separate lines
Text Format
html allows us to format our text with different tags like b tag,strong tag,i tag,small tag,sub tag,sup tag,ins tag,del tag
Elements
HTML documents are made up of HTML elements. An HTML element is written using a start tag and an end tag, and with the content in between.
Attributes
Attributes provide additional information about an element or a tag, while also modifying them. Most attributes have a value; the value modifies the attribute.
Multiple Attributes
Attributes provide additional information about an element or a tag, while also modifying them. Most attributes have a value; the value modifies the attribute.
The img Tag
The img tag is used to insert an image. It contains only attributes, and does not have a closing tag. The image's URL (address) can be defined using the src attribute.
Ordered List
An ordered list starts with the ol tag, and each list item is defined by the li tag.
Unordered List
Unlike ordered list which stars with ol tag, unordered list starts with li tag.
Tables
Tables are defined by using the table tag. Tables are divided into table rows with the tr tag. Table rows are divided into table columns (table data) with the td tag.
Table Properties
colspan is the property which specifies how many td will it take.similarly, border will tell the actual border value of table
The a Tag
Links are also an integral part of every web page. You can add links to text or images that will enable the user to click on them in order to be directed to another file or webpage. In HTML, links are defined using the a tag.
Block Elements
In HTML, most elements are defined as block level. Block level elements start from a new line. For example: h1, form, li, ol, ul, p, pre, table, div
Inline Elements
Inline elements are those elements which dont start from a new line instead they continue moving to the same line
HTML Forms
HTML forms are used to collect information from the user. Forms are defined using the form element, with its opening and closing tags/
HTML Colors
HTML colors are expressed as hexadecimal values. Colors are displayed in combinations of red, green, and blue light (RGB). All of the possible red, green, and blue combinations potentially number over 16 million.