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.
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading 1</h1>
<p>Paragraph text</p>
</body>
</html>
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:
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>
</h1>
<p>
Paragraph p
</p>
<i>
Italic i
</i>
<br>
Hi I am
Breaked
-
<hr>
Hi I am Breaked with a line
-
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.
<!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>
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.
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