HTML Introduction
Html stands for Hyper Text Markup Language.It describe the structure of a webpage. It tells the browser how to display a content
Example of Html element ducument
! DOCTYPE html: It declear that the document is an Html 5 document
Html: It is the root element of of html page.
Head: The head element contains meta information about the html page.
Title: The element specifies the title of a html page (which shows in the browser title bar).
Body: The body element is where all visible contents are,such as heading,paragaraph,images e.t.c
Html document


Html Editors
Html Editors is a program used for editing html. The markup of a webpage. Although the html markup in a webpage can be contrlled with any text editor, specializeddhtml editors can offer convenience, added functionality, and organization
Examples of Html Editors
- Visual Studio Code
- Atom
- Sublime Text
- Notepad++
- Brackets

Html Elements
Html Elements are component of an HTML document that tells a web browser how to structure and interpret a part of the HTML document. It is defined by a start tag, some content, and an end tag.
Example of Html Element
- < html >< / html >
- < heaf >< / head >
- < div >< / div >
- < h1 >< / h1 >
- < p >< / p >

Html Attributes
Html Attributes modifies html elements.It either modifies the default functionality of an element type or provides functionality to certain element types unable to function correctly without them.
Example of Html Attributes
The href attribute is mostly used in < a > tag, The href attribute specifies the URL of the page the link goes to.

The src attribute is mostly used in < img > tag, The src attribute specifies the path to the image to be displayed

The style attribute is used to add styles to an element, such as color, font, size, and more.

The width and height attributes of < img > provide size information for images.

NOTE:
All HTML elements can have attributes Attributes provide additional information about elements Attributes are always specified in the start tag Attributes usually come in name/value pairs like: name="value"
Html Headings
Html Headings are titles or subtitles that you want to display on a webpage. HTML headings are defined with the < h1 > to < h6 > tags. Whereby the h1 defines the most important heading and the h6 defines the least important heading.
Example


Html Paragraphs
Html Paragraphs The HTML < p > element defines a paragraph. A paragraph always starts on a new line, and browsers automatically add some white space (a margin) before and after a paragraph.
Example


Html Linebreak
Html Linebreak The < br > tag inserts a single line break. The < br > tag in HTML is a line break element used to create a break in the line of text. It's commonly used to add space between lines within an element like a paragraph or header.
Example

