0001
1. HTML - Hyper Text Markup Language.
2. HTML is the standard markup language for creating Web pages.
3.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1> This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
4.
The <!DOCTYPE html> declaration defines that this document is an HTML5 document
The <html> element is the root element of an HTML page.
5.
The <head> element contains meta information about the HTML page.
- meta information provides context and instructions to the browser and other systems (like search engines) about how to handle or interpret the HTML page.
- Interpret - 1. explain the meaning of (information or actions). 2. translate orally or into sign language the words of a person speaking a different language.
The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
6.
The <body> element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
The <h1> element defines a large heading.
The <p> element defines a paragraph.

Comments
Post a Comment