Its not possible in pure HTML; You will have to use PHP or JavaScript. If you want to do this in JavaScript, you can put this in your <head> section:
<script> if (window.location.search.indexOf('?view=full') === 0) document.write('<link rel="stylesheet" href="theStylesheet.css" />'); </script>
source share