HTML and Organization :
- HTML is a subset of Standard Generalized Markup Language (SGML)
- HTML is specified by the World Wide Web Consortium (W3C).
HTML describes Web Page -
- HTML stands for Hyper Text Markup Language
- HTML is not a programming language.
- HTML is a markup language
- Markup Language Consists of set of Tags called “markup tags“.
- Markup Tags are used to describe Web Page using Markup Tags.
- HTML elements are basic building blocks for the construction of web pages. | Version History
What we can do using HTML ?
- We can Create Web Page using HTML.
- We can Format Specific Part of Web Page using HTML.
- We can Embed JavaScript in order to provide dynamic feature.
- We can Apply Styles to Webpage Using CSS to look Web Page more interactive and Fresh.
- We can Provide Server Side Execution Facility by embedding Server Side Scripting inside HTML.
First Look at HTML Tag :
- Web Page Consists of HTML tags.
- HTML tag is basic building block of Web Page.
- HTML Tags are Keywords surrounded with starting angular bracket and closing angular bracket
- Generally each Tag comes in a pair except some non closing tags.
Example :
<html> <body> <h1>Pritesh</h1> </body> </html>
- <h1> is starting tag
- </h1> is ending tag
- Starting Tag is also known as “Opening Tag“.
- Ending Tag is also known as “Closing Tag“.