CSS - CSS Include External File
CSS Include External File
With css you can write all of your css syntax into a seperate file and then link that in your html document.
If you write it this way you dont need to include the <style></style> tags in your css syntax.
If we create the file style.css we can link this with the following html code
HTML
<link rel="stylesheet" type="text/css" href="style.css" />
CSS
selector {
font-weight:bold;
}