Skip to content

Instantly share code, notes, and snippets.

@Andrelton
Created December 20, 2015 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Andrelton/12539cee2ca4ba5fde45 to your computer and use it in GitHub Desktop.
Save Andrelton/12539cee2ca4ba5fde45 to your computer and use it in GitHub Desktop.
Bare-minimum HTML page with jquery and stylesheet/script tags.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Minimum html page.</title>
<meta charset="utf-8">
<link rel="stylesheet" href="index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript" src="index.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment