Categories
CSS

Ways to attach CSS stylesheets to a page

<style>
@import url(css/global.css);
</style>  

 @import can attach external stylesheets to an already external style sheet, but it is slower, and slows down the rendering of pages

<link rel=”stylesheet” type=”text/css” href=”css/global.css”>

Leave a Reply

Your email address will not be published. Required fields are marked *