Html-CSS

HTML stands for Hyper Text Markup Language

HTML is the standard markup language for Web pages

HTML elements are the building blocks of HTML pages

HTML elements are represented by <> tags

HTML Attributes HTML elements can have attributes Attributes provide additional information about the element Attributes come in name/value pairs like charset="utf-8"

A Simple HTML Document

<title>Page Title</title>

This is a Heading

This is a paragraph.

This is another paragraph.

Example Explained HTML elements are the building blocks of HTML pages.

The declaration defines this document to be HTML5 The element is the root element of an HTML page The lang attribute defines the language of the document The element contains meta information about the document The charset attribute defines the character set used in the document The <title> element specifies a title for the document The element contains the visible page content The

element defines a large heading The

element defines a paragraph HTML Documents All HTML documents must start with a document type declaration: .

The HTML document itself begins with and ends with .

The visible part of the HTML document is between and .