Multiple choice technology programming languages

Choose correct syntax used for external CSS

  1. .<style type="text/css">

  2. .<link rel="stylesheet" type="text/css" href="r4rcss.css">

  3. Both

  4. None

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

External CSS files are linked using the element placed in the HTML section. This approach separates content from presentation and allows multiple pages to share the same stylesheet. The tag is used for internal CSS embedded within the HTML document itself.