Best way to include a stylesheet
Posted: Tue Dec 09, 2008 3:04 pm
What is the best way to include a style sheet into the head of a HTML document?
This:
OR:
This:
Code: Select all
<style type="text/css" media="all">@import url("../styles/global.css");</style>Code: Select all
<link rel="stylesheet" href="../styles/global.css" type="text/css" media="all" />