Computer Science, asked by Jayprince, 9 months ago

which element is used in the <head> section on an HTML page, if we want to use an external style sheet file to decorate the page.​

Answers

Answered by botXashu
9

Answer:

please mark me brilliant and follow me....

Explanation:

Inline - by using the style attribute inside HTML elements. Internal - by using a <style> element in the <head> section. External - by using a <link> element to link to an external CSS file

Answered by qwnerazzuri
0

<link> element is used in the <head> section on an HTML page, if we want to use an external style sheet file to decorate the page.​

If we want to add a style to multiple web pages then we use external CSS. To add an external CSS to our Html file then we have to link that file to our HTML file.

For example : <link rel="stylesheet" href="styles.css">

Here, style.css is the external Style sheet where the common CSS snippets are written and using the "link rel" we link it to our main Html file.

Similar questions