Skip to content

Instantly share code, notes, and snippets.

@clintonhalpin
Created July 14, 2012 20:22
Show Gist options
  • Save clintonhalpin/3113194 to your computer and use it in GitHub Desktop.
Save clintonhalpin/3113194 to your computer and use it in GitHub Desktop.
Html Basic Structure
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Seems to be a good standard...but whatever-->
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1.0, user-scalable=no">
<title>Panelfly - Home</title>
<meta name="author" content="#Big Pun" />
<link rel="stylesheet" href="#" type="text/css" media="screen" />
<!--[if lte IE 9]>
# If you care
<![endif]-->
<!--[if gte IE 8]>
# If you care
<![endif]-->
<!--[if lte IE 7]>
# If you care
<![endif]-->
</head>
<body>
<script type="text/javascript" src="#"></script>
</body>
</html>
@julesjanssen
Copy link

The 'type' attribute for <script> & can be left out in HTML5.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment