+ 2
How do you mix html and css code?
2 odpowiedzi
+ 13
If you refer on how to link one code to another in you HTML page in <head> you need to use the link tag: <link href="yourCSSroot" rel="stylesheet">.
If you refer on how to use CSS in HTML page then you can use the embedded or internal way by using the <style> tag or style attribut of the HTML element.
0
Good question