[go: up one dir, main page]

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

HTML Guide

HTML (HyperText Markup Language) is the standard language for creating web pages. The document provides a basic example of HTML code, including key elements such as <!DOCTYPE html>, <html>, <head>, <title>, <body>, <h1>, and <p>. Each element is briefly explained to illustrate its purpose in a web page structure.

Uploaded by

gcommunity250
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)
26 views1 page

HTML Guide

HTML (HyperText Markup Language) is the standard language for creating web pages. The document provides a basic example of HTML code, including key elements such as <!DOCTYPE html>, <html>, <head>, <title>, <body>, <h1>, and <p>. Each element is briefly explained to illustrate its purpose in a web page structure.

Uploaded by

gcommunity250
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
You are on page 1/ 1

HTML for Web Development

HTML (HyperText Markup Language) is the standard markup language for creating web pages.

Example Code:

<!DOCTYPE html>

<html>

<head>

<title>My Website</title>

</head>

<body>

<h1>Welcome to My Website</h1>

<p>This is a basic HTML page.</p>

</body>

</html>

Explanation:

- <!DOCTYPE html>: Declares the document type.

- <html>: Root element of the HTML page.

- <head>: Contains meta-information about the document.

- <title>: Sets the title of the page.

- <body>: Contains the content of the page.

- <h1>: A header tag.

- <p>: A paragraph tag.

You might also like