Posts

Showing posts with the label link tag

How to < link > tag with hreflang Attribute in HTML ? with example

How to < link > tag with hreflang Attribute in HTML ? with example   Lang stand for language  Example  <html>  <head>   <link href ="tech.thinkforu.org" rel="parent"  rev="subsection" hreflang = "en" > </head> </html>

How to use < link > tag with size attributes ? with example

 How to use link tag with size attributes ? with example  <head> < link rel="logo"href="techthinkforulogo.gif"    sizes ="32x32"> </head>

How to use < link > tag with media attribute with example

 How to use link tag with media attribute with example  Syntax of media attribute in HTML <link media="value"> Example <head>   <link rel="stylesheet" type="text/css"  href="firstscreen.css">    <link rel="stylesheet" type="text/css" href="secondscreen.css"  media ="thirdscreen"> </head>

How do I create a < link > tag?

How do I create a link tag?  <head>   <link rel="stylesheet" href="tech.css"> </head>

What is < link > tag in html ?

 What is link tag in html ? The <link> tag defines the relationship between  the current document A and an external resource.  The <link> tag is most often used to link to  external stylesheets  .