BMR AI
By using this service you agree to read and accept our Terms and conditions and Privacy Policy
Chat Now
GUIDE

Welcome to our BMR AI CHATBOT.

A free expermental AI tool where you can interact with the webpage, ask question about the webpage and other related doubts.

In some cases reponses may take time to get. In case of error give us your report.

You responses are stored for experimental purpuses. And your personal info is not integrated with you in any way.

Note: AI can make mistakes and can give in appropiate responses. Your feedbak will help us improve.

Stay tuned for more AI products and tools

And Finally don't forget to give your feedback. click on the icon provided to give feedback.

REPORT ERROR

SUBMIT
DELETE CHAT

HTML Introduction


HISTORY

S.No

Year

Version

Description

1

1991

HTML 1.0

Basic markup for linking documents on the web

2

1995

HTML 2.0

Introduced tables, forms, and basic scripting

3

1997

HTML 3.2

Added applet support and improved tables

4

1997

HTML 4.0

Introduced CSS, frames, and advanced scripting

5

1999

HTML 4.01

Bug fixes and clarifications to HTML 4.0

6

2000

XHTML

HTML reformulated with XML syntax

7

2014

HTML5

Major revision with multimedia support, canvas, and more


HTML Structure

Example

<!DOCTYPE html>
<html>
  <head>
    <title>Page Title</title>
  </head>
  <body>
    <h1>Heading 1</h1>
    <p>Paragraph text</p>
  </body>
</html>
Refer: Learn more about HTML Structure

HTML Elements

HTML Elements define the characteristics of Content to perform on an HTML page. They are mainly used in the body section of the html page.
For Example:

  1. <h1> - Defines the content as heading
  2. <p> - Defines the content as Paragraph
  3. <i> - Defines the content as Italic
  4. <span> - Defines the content as normal without any line break

Similarly, there are many elements.
Each element has a tag name with a start tag and an end tag. But for some tags, there is no end tag.

Start Tag

Example

End Tag

<h1>

Heading h1

</h1>

<p>

Paragraph p

</p>

<i>

Italic i

</i>

<br>

Hi I am
Breaked

-

<hr>

Hi I am Breaked with a line

-

Note: HTML Elements can be represented in small or large case letters like <h1> and <H1>. They are not case-sensitive. Don't Skip the End tag. If so the content may get changed as the characteristics of the unclosed tag will get applied to all elements next to it.

The <!DOCTYPE> Declaration

It is a declaration that defines a document as an HTML5 document
It must only appear once in a document and at the top of the page i.e., before any HTML tags
The <!DOCTYPE> declaration is not case-sensitive which means even if you don't keep the browser will automatically detect and keeps the declaration.


Example

<!DOCTYPE html> <!--DOCTYPE HTML Declaration-->
<html>
  <head>
    <title>DOCTYPE html</title>
  </head>
  <body>
    <h1>Doctype Declaration is not case sensitive</h1>
    <p>It defines a document as a HTML5 document.</p>
  </body>
</html>

HTML Editors

Text editors: Text editors are basic programs that allow you to edit and save HTML code using plain text. Some popular text editors for HTML include Notepad (Windows), TextEdit (Mac), and Sublime Text.

IDEs: Integrated Development Environments (IDEs) are comprehensive software applications that provide advanced editing and debugging tools for web development. These programs often include code editors, project management tools, and debugging and testing features. Popular HTML IDEs include Visual Studio Code, NetBeans, and Eclipse.

Online editors: Online HTML editors allow you to create and edit HTML documents directly in your web browser, without having to install any software on your computer. Try out your HTML code here with our online compiler.


Web Browsers


Quick Recap - Topics Covered

Introduction and history of HTML
Structure of HTML
The <!DOCTYPE html> declaration
HTML Editors

Practice With Examples in Compilers

The Concepts and codes you leart practice in Compilers till you are confident of doing on your own. A Various methods of examples, concepts, codes availble in our websites. Don't know where to start Down some code examples are given for this page topic use the code and compile or Try on own Now

Example JS

Example 1 Example 2 Example 3 Example 4 Example 5

Quiz


FEEDBACK