http://code.jquery.com/jquery-latest.min.js - Most recent version, jQuery hosted http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js - Version 1.x family, Google hosted http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js - Version 1.9.1 family, Google hosted http://ajax.microsoft.com/ajax/jQuery/jquery-1.9.1.min.js - Version 1.9.1, Microsoft hosted
Last active
December 15, 2015 10:49
-
-
Save albermav/5248670 to your computer and use it in GitHub Desktop.
Basic HTML5 Page Template
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title>Page Title</title> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width"> | |
| <link rel="shortcut icon" href="favicon.ico"> | |
| <link rel="icon" href="favicon.ico"> | |
| <link rel="stylesheet" type="text/css" href="styles.css"> | |
| <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> | |
| <!--[if lt IE 9]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment