-1

Hi if anyone knows how to use Code Runner, how would I link an html file to a css file. Does Code Runner even support css?

Thanks

Vishnu Murale
  • 173
  • 14

1 Answers1

2

Well it doesn't matter which IDE or Editor you are using.

In order to add a css spreadsheet to your HTML page, you must use the <link> tag.

HTML link tag

<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>
Phiter
  • 14,570
  • 14
  • 50
  • 84