HTML Learning Notes - Day 1
Day 1: Introduction to HTML
What is HTML?
- HTML stands for HyperText Markup Language.
- It is used to design the structure of web pages.
Basic Structure of HTML:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
Content goes here
</body>
</html>
Explanation:
- <!DOCTYPE html>: Defines the HTML5 document.
- <html>: Root of the HTML document.
- <head>: Contains meta info, title, etc.
- <title>: Title of the web page shown in tab.
- <body>: Main content area shown in browser.