[Solved] What means “rel” “and “style” mean here? [closed]


In relation to HTML the rel attribute specifies the relationship between the current document and the linked document it is only used if the href attribute is present.

The style tag will enable you to edit the style e.g color of a particular div, text etc. For example

<html>
<head>
<style>
h1 {color:red;}
p {color:blue;}
</style>
</head>
<body>

<h1>A heading</h1>
<p>A paragraph.</p>

</body>
</html>

This will change the color of the h1 to red and paragraph to blue

The type tag will change the ‘type’ of something for example

<button type="button">Click Me!</button>

I suggest you check out http://www.w3schools.com/ for some more information

solved What means “rel” “and “style” mean here? [closed]