0% found this document useful (0 votes)
6 views1 page

HTML Basics: Day 1 Notes

The document provides an introduction to HTML, explaining that it stands for HyperText Markup Language and is used for structuring web pages. It outlines the basic structure of an HTML document, including elements like <!DOCTYPE html>, <html>, <head>, <title>, and <body>. Each element's purpose is briefly described, emphasizing their roles in defining the document and displaying content in a web browser.

Uploaded by

sasakapp1
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

HTML Basics: Day 1 Notes

The document provides an introduction to HTML, explaining that it stands for HyperText Markup Language and is used for structuring web pages. It outlines the basic structure of an HTML document, including elements like <!DOCTYPE html>, <html>, <head>, <title>, and <body>. Each element's purpose is briefly described, emphasizing their roles in defining the document and displaying content in a web browser.

Uploaded by

sasakapp1
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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.

You might also like