there are two ways of including css:
- you put all css code in head tags.
<style type=“text/css”>
*all css code here*
</style>
- you put all css code in an external .css file and you just call it in the head tags like this:
<link rel=stylesheet href=“style.css” type=“text/css”>
<style type=“text/css” media=“screen”>@import url(style.css);</style>
but there must be something between head tags that calls the css code.