Computer Science, asked by sultan3392, 10 months ago

What is the correct html for referring to an external style sheet stored in a subfolder called css?

Answers

Answered by Anonymous
10

<link rel="stylesheet" type="text/css" href="mystyle.css"> is the correct syntax for importing an external CSS file. We usually write this in <head> section

Answered by StaceeLichtenstein
2

<link rel="stylesheet" type="text/css" href="css/mystyle.css"> is correct answer to the given question .

Explanation:

  • External css means we including the file of css which is on the other folder when we design any website with the help of HTML and css the external Cascading style sheet plays an important role .
  • We used the Link tag to include the external css file it is placed under the head section of the HTML page .In this we have pass 3 attribute rel, typ, href.The href attribute determine the path where the css file is stored .In the given question we have give css/mystyle.css it means the file mystyle.css is saved under the css folder.

Learn More :

brainly.in/question/11753160

Similar questions