+ 5
What is rel
this is description between link tad
4 ответов
+ 16
"rel" stands for "relation" (has to be "stylesheet" for css)
+ 6
"rel" is just a relationship tag , which shows the relation between linked file and your html. if you attached a css file you should write rel="stylesheet" or if you attaching a script you should write rel="javascript" as simple as that.
+ 5
"rel" defines the relationship between html & css.
+ 3
'rel' (relation) is a HTML attribute. If you have to link a CSS file to a HTML document for specifying styles, you can write
<link rel="stylesheet" type="text/css" href="CSS_FILE_PATH"/>
in the head of your HTML document.