HTML Stands for Hypertext Markup Language it is used in web pages and websites. html is easy to learn language
1.HTML is the stnadard markup language for creating webpages. 2.HTML describes the structure of the webpage 3.HTML consists of a series of elements 4.HTML elements tell the browser how to display the content. 5.HTML elements label pices of content such as "This is a heading", "this is a paragraph", "this is a link", etc.
<title>Give Page Title here!</title>My first Paragraph!
the element declares that this is a HTML5 type of document.
the element is the root element of an HTML page.
the element contains meta info about the HTML page.
the <title> element specifies a title for the HTML page.
the element defines the document's body and is a container for all the browser's title bar or in the page's tab.
the
An HTML ELEMENT is defined by a Start tag , some content, and a End tag.
A Basic Structure Of Html Page is as Follows:-
<title>Page title</title>This is a paragraph.
This is another paragraph.
HTML headings are defined with the
File: headings.html Note - HTML headings are defined with the
File: paragraph.html Note - HTML Paragraphs are defined using the
tag.
File: style.html Note - HTML Styles should be Defined in the Style="" tag.
File: formatting.html Note - HTML basic text Formatting is Shown here!
File: tabels.html Note - HTML Tabels are Defined using the ,, TAGS. EXAMPLE BELOW:-
File: links.html Note - HTML Links are Defined using the tag.
EXAMPLE - GOOGLE Links can also be beautified by CSS by following code of CSS: <style> a:link { color: aqua; background-color: black; font-family: 'Courier New', Courier, monospace; }
a:visited {
color: grey;
font-family: 'Courier New', Courier, monospace;
}
a:active {
color: cadetblue;
}
</style>





