0
Write codes that implement inline, embedded, external and imported style sheets.
2 Answers
+ 2
From your profile I can see that you finished the CSS course. I would assume that you have the skills to accomplish this yourself.
If you need help, please describe the problem specifically and show a minimal working example so we can check on it.
0
//external:
<link rel="stylesheet" href="style.css">
//imported:
<link rel"stylesheet" href="link for style">
//embedded:
<h1 style="background: black;">Heading</h1>