History of HTML:
1991 β HTML 1.0: Created by Tim Berners-Lee, it allowed sharing simple documents on the World Wide Web.
1995 β HTML 2.0: Standardized version with basic elements like forms, tables, and text formatting.
1997 β HTML 3.2 & 4.01: Introduced more formatting tags, scripting support (like JavaScript), and style separation with CSS.
1999β2000 β HTML 4.01 became widely used.
2008β2014 β HTML5: Major upgrade supporting multimedia, semantic elements (like <header>, <section>), mobile-friendly design, and interactive content.
Handwritten notes
π‘ Basics of HTML:
HTML stands for HyperText Markup Language. It structures the content of web pages using tags.
πΉ Basic Structure:
html
Copy
Edit
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Welcome!</h1>
<p>This is a paragraph.</p>
</body>
</html>
πΉ Common Tags:
<html> β Root of the page
<head> β Metadata and title
<body> β Page content
<h1> to <h6> β Headings
<p> β Paragraph
<a href=””> β Hyperlink
<img src=””> β Image
<ul>, <ol>, <li> β Lists
<div>, <span> β Containers for styling or layout