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
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
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.
<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>