What is HTML
- HTML is the standard for Hypertext Markup Language for Web pages.
- The HTML elements tell the browser how to display the content.
- Using HTML you can create your own Website.
- It is the structure of a Web page.
Note: HTML Is Not Case Sensitive.
Basic Structure of HTML

First Program in HTML
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Output
This is a Heading
This is a paragraph.
What is HTML
- HTML is the standard for Hypertext Markup Language for Web pages.
- The HTML elements tell the browser ...
Click Here
Previous topic next topic What is an Element in HTML
- An Hypertext Markup Language(HTML) element ...
Click Here
Previous topic next topic HTML Headings
- The HTML headings are used to define the heading ...
Click Here
Previous topic next topic HTML Formatting Elements
- The <b> element is use for bold text, without ...
Click Here
Previous topic next topic HTML Comments
- The HTML Comment are describe the extra feature about ...
Click Here
Previous topic next topic HTML Attributes
- Every HTML element can have attributes.
- The HTML Attribute ...
Click Here
Previous topic next topic HTML Links
- HTML links are hyperlinks.
- HTML link default color is ...
Click Here
Previous topic next topic Table Backgrounds You can set the table background using one of the ...
Click Here
Click Here
Previous topic next topic Table Header, tbody and Footer
- Tables are categories into three parts: ...
Click Here
Previous topic next topic Basic to Advance table design in HTML Example 1 <!DOCTYPE> <html> <body> ...
Click Here
Click Here