What is the correct way to link to an external stylesheet from the head of an HTML document?
<script type="text/css" src="styles.css">
<script type="text/css" href="styles.css"></script>
<link rel="css" href="styles.css">
<link rel="stylesheet" href="styles.css">