Important Notice:

Course Content
Heading Tag / Paragraph Tag
0/2
Horizontal Rules (HR element)
0/1
Font Element
0/1
Image Element
0/1
HTML Basic (Chapter 3) M2-R5.1
About Lesson

 HTML Tag

यह Main HTML Tag होता है, इसे Main Container भी कहते हैं, इसी से HTML Document बनाना शुरू किया जाता है Container के अंदर ही Other Element होते हैं और अंत में Web Page को close करने के लिए html closing tag < /html >का प्रयोग करते हैं.

<html>

………………………….

………………………….

</html>

Head Tag

इस tag के द्वारा Web page का Header Area बनाया जाता है। यह टैग एक Web page के बारे जरूरी Information provide करता है।<title>, <style>, <script>, <link>, <meta> यह सभी टैग्स Head tag के अंदर ही लिखे जाते है।

 <html>

     <head>

              <title> Hello </title>

     </head>

</html>

Title Tag:-

किसी भी Web page का शीर्षक देने के लिये title tag का इस्तेमाल किया जाता है। इसे Head tag के अंदर लिखा जाता है। title tag की मदद से Browser यह जान पाता है, कि Web page किस बारे में है।

 <html>

     <head>

              <title> Hello </title>

     </head>

</html>

HTML Tag

<HTML> is a starting tag. To delimit the text inside, add a closing tag by adding a forward slash “/” to the starting tag. Most but not all tags have a closing tag. It is necessary to write the code for an HTML page between <HTML> and </HTML>. This <HTML> tells the browser is ‘this is the start of an HTML document’ and </HTML> ‘this is the end of an HTML document’.

 

<html>

……………………..

………………………

………………………….

</html>

Head Tag

Before the <body> element you will often see a <head> element. This contains information about the page, rather than information that is shown within the main part of the browser. You will usually find a <title> element inside the <head> element. <head> is opening head tag and </head> is closing head tag.

Note:- This tag contains information about the document, including its title, scripts used, style definitions and document descriptions.

 <html>

     <head>

              <title> Hello </title>

     </head>

</html>

Title Tag:-

The contents of the <title> element are either shown in the top of the browser, above where you usually type in the URL of the page you want to visit, or on the tab for that page (if your browser uses tabs to allow you to view multiple pages at the same time). <title> is opening title tag and </title> closing title tag.

 <html>

     <head>

              <title> Hello </title>

     </head>

</html>

error: Content is protected !!