Quick look-up about how to integrate CSS with a website.
We can write CSS coding inline with HTML or keep it as a separate file.
Here how we can use it as separate CSS file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Web Site TItle</title>
</head>
<body>
Web Site Content Will goes here...
</body>
</html>
In above example you can see style sheet linked to the web page as a external file. Now you can write CSS rules in external CSS file.
Here how we can use it inline with HTML
<!DOCTYPE html PUBLIC...