Created
July 14, 2012 20:22
-
-
Save clintonhalpin/3113194 to your computer and use it in GitHub Desktop.
Html Basic Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The 'type' attribute for <script> & can be left out in HTML5.