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 5 Tag:-

  1. <nav> tag:-

               <nav> टैग का उपयोग documents में navigation link को define करने के लिये किया जाता है Navigation website का एक महत्वपुर्ण element होता है। इसे navigation bar भी कहा जाता है। Navigation में website के दूसरे important pages की links होती है। ये किसी website की core design का हिस्सा होता है।

Syntax:-

<nav>

<a href=”path of a file”> Hyper text 1</a>

< a href=”path of a file”> hyper text 2</a>      

 </nav>

 

  1. <article> Tag:-

                        एक website में header, footer और sidebar आदि अलग अलग pages पर same हो सकते है। लेकिन article हर page पर unique होता है। Article किसी website का वह section होता है जिसमें main content होता है और जो user के लिए सबसे महत्वपूर्ण होता है। आपकी website के इसी section के base पर आपको search engines में ranking मिलती है।

Syntax:-<article attributes> article text              </article>

 

  1. <aside> Tag:-

                        HTML5 के <aside> tag में ऐसे content को show किया जाता है जो आस पास के content से related होता है। इस tag को ज्यादातर sidebar के रूप में उपयोग किया जाता है। इस tag को tag के अंदर define किया जाता है। <aside> tag को <article> tag में भी define किया जाता है। उस situation में इस tag में article से related content show किया जाता है।जै से की कोई ऐसी बात जिस पर aritcle में ज़ोर दिया गया हो एक quote के रूप में show की जाती है। <aside> tag का behaviour <div> tag की तरह ही होता है और use करने पर दोनों same ही लगते है। लेकिन इनका मतलब अलग अलग होता है। Div केअंदर का content जरुरी नहीं की main page content से related हो। लेकिन <aside> tag का content main page content से related होता है।

<aside> element can be used for any of the following

  • Bibliography
  • Comments
  • Pull quotes
  • Editorial sidebars
  • Additional information
  • Advertisement

Syntax:-  <aside attributes> contents………      </aside>

HTML 5 Tag:-

  1. <nav> tag:-

               The <nav> tag is used to defines a set of navigation links. The <nav> element is intended only for major block of navigation links. Web sites typically have sections dedicated to navigational links, which enables user to navigate the site.

Syntax:-

<nav>

<a href=”path of a file”> Hyper text 1</a>

< a href=”path of a file”> hyper text 2</a>

 </nav>

  1. <article> Tag:-

               The <article> tag is one of the new sectioning elements in HTML5. The HTML <article> tag is used to represent an article i.e. a component of a page that consists of self-contained composition in a document, page or a site.

Syntax:- <article attributes> article text             </article>

  1. <aside> Tag:-

               The <aside> tag is used to describe the content that is related to the primary content of the web page but does not constitute the main intent of the primary page. The aside element represents a section of a page that consists of content that is related to the content around the aside element, and which could be considered separate from that content.

<aside> element can be used for any of the following

  • Bibliography
  • Comments
  • Pull quotes
  • Editorial sidebars
  • Additional information
  • Advertisement

Syntax:-          <aside attributes> contents………         </aside>

error: Content is protected !!