CSS - CSS Internal Styles
CSS Internal Styles
CSS syntax can be included in any html page, and you can put it anywhere inside the body or html tags and the browser should interperate it.
Usually its best to add the syntax within the header of the site.
You can include internal css styles by using the <style>
tag and then after your css syntax add the </style>
to close it off.
CSS
/* This is our Internal Style tag */
<style>
selector {
font-weight:bold;
}
</style>