Complete the code to link an external CSS file named "styles.css" to the HTML document.
<link rel=[1] href="styles.css">
rel="script" or rel="style" instead of "stylesheet".The rel attribute specifies the relationship between the HTML document and the linked file. For CSS files, it should be "stylesheet".
Complete the HTML link tag to correctly include the CSS file with the right attribute for the file path.
<link rel="stylesheet" [1]="styles.css">
src instead of href in the link tag.file or link.The href attribute specifies the path to the CSS file to link.
Fix the error in the link tag to properly link the CSS file.
<link rel="stylesheet" href=[1]>
The value of the href attribute must be enclosed in double quotes for valid HTML syntax.
Fill both blanks to correctly link a CSS file named "main.css" with the right attributes.
<link [1]=[2] href="main.css">
src instead of rel."style" instead of "stylesheet".The rel attribute should be set to "stylesheet" to link CSS files properly.
Fill all three blanks to correctly link an external CSS file named "theme.css" in the HTML head.
<link [1]=[2] [3]="theme.css">
src instead of href.The link tag needs rel="stylesheet" and href="theme.css" to properly link the CSS file.