Introduction to HTML and its Structure
- Full Form of HTML is Hypertext Markup Language.
- HTML is used to create web pages and web applications.
- HTML is not a case sensitive language.
- HTML is not a Programing language, It is a Markup language.
- In HTML ,the content of webpage or web application are defined by the Elements or Tags(together with their properties).
- To Make an Attractive or a User-Friendly Web page and Web Application ,HTML uses Cascading Style Sheets(CSS).
- To Make an Interactive or a Responsive Web page and Web Application ,HTML uses special Scripting language such as JavaScript.
- To Save a HTML file we have to use the extension i.e. ".html".
- Syntax : <filename><dot>.html
- Example :-myfile.html
Basic Structure of an HTML Document
A typical HTML document consists of the following basic structure:
Explanation of HTML Document
- HTML Tag : This is the main tag that encloses all the content of the web page and web application.
- Head Tag : This tag Contains information that does not display to the user; it contains information about the document for the web server or browser.
- Title Tag : This tag is used to set the title of the webpage or web application that displays in the browser title bar.
- Meta Tag : The content of a Meta tag is for server ,not for user , and that content is not shown to the audience.
- Script Tag : In this tag ,we can link JavaScript functions for performing any task and user interaction.
- Style Tag : In this tag, we add CSS Style code for formatting.
- Link Tag : This tag is Used to Link external resource files like CSS or JAVA Script.
- Body Tag : This tag, contains all the information that the user or audience can view.
Comments
Post a Comment
If you have any doubts,Please let me know.