Including CSS in A document
CSS can be included in a document four ways - 1. Embedded a style sheet : directly put the style sheet between <head> and </head> tags. <head> <style type=”text/css”> body{ font: 10px sans-serif; } </style> </head> 2. Include a CSS in a document and link it to the HTML document. <link rel=“stylesheet” type=“text/css” href=“example1.css”> Here rel is relationship between the including and included documented, the included documented is stylesheet here. type refers to the MIME type of the i...