Posts

Heading Tag

Image
 Heading Tag 1. Heading Tag in HTML has 6 levels, From <h1> to <h6> 2. Heading Tags are paired tags i.e heading tag conists of opening tag (<h1>,<h2>,<h3>,<h4>,<h5>,<h6>) and closing tag(</h1>,</h2>,</h3>,</h4>,</h5>,</h6>) 3. <h1> is the most important heading and <h6> is least important heading. 4. The browser will automatically add whitespace (margins) before and after the heading tag. 5. Headings are important for search engines as search engines use to index the structure and content of the webpage.

The Basic Template Of Any HTML File | Day 3

THE BASIC HTML FILE SHOULD HAVE FOLLOWING CONTENTS  <!doctype html> <html lang = "en"> <head>     <meta charset = "utf-8">     <meta name ="viewport" content="width=device-width, initial-scale = 1">     <meta name ="author" content="What,When & How is HTML?>     <meta name ="description" content="It should 155 characters long">     <title>What, When & How Is HTML? </title> </head> <body> </body> </html>

Basic HTML Structure and Introduction towards What is HTML Tags and types of HTML Tags | Day 2

Image
INTRODUCTION TO  HTML TAGS HTML documents are made up of a series of HTML Elements  HTML Elements tells the browser how to display the content HTML Elements are represented by Tags Browsers do not display HTML tags but use them to render the content of the page Syntax  of  HTML  TAG : There are 2 types of HTML Tags                 1. Paired Tags: These are the tags that have the start tag (also called as an opening tag)and                                            end tag (also called the closing tag).                  2. Empty Tags / Singular Tags: These are the tags which only have  opening tag /start Tag  Basic HTML Structure All HTML documents should contain the following basic structure. <!DOCT...

What is HTML? Basic Meaning Of Hypertext Markup Language | Day 1

HTML - H yper T ext M arkup L anguage Hyper - Means reference or the links  Text - Means the data. Data can be in the form of text or images Markup - Means the predefined HTML tags that are used to structure the web page Language - Communication  HTML is the client-side scripting language used to design the website/webpages using HTML tags and elements. HTML was founded by Tim Burners - Lee in the Late 1990s  IMPORTANT NOTES : 1. HTML is a markup language and not a programming language. 2. Hypertext refers to  links that connect web pages to one another, either within a single website or between websites. Links are a fundamental aspect of the Web. By uploading content to the Internet and linking it to pages created by other people, you become an active participant in the World Wide Web. 3. How Markup Languages Differ from Programming Languages The meaning of markup languages is text. It controls how text is displayed, structur...