Skip to content

Instantly share code, notes, and snippets.

@szabacsik
Created December 15, 2017 15:53
Show Gist options
  • Save szabacsik/f1601cb59ed0e5b897ab4e28185ad8ca to your computer and use it in GitHub Desktop.
Save szabacsik/f1601cb59ed0e5b897ab4e28185ad8ca to your computer and use it in GitHub Desktop.
Blank HTML5 template with Bootstrap and JQuery framework
<!doctype html>
<html lang="en">
<head>
<title>Blank HTML5 template with Bootstrap and JQuery framework</title>
<meta charset="utf-8">
<meta name="description" content="Blank HTML5 template with Bootstrap and JQuery framework">
<meta name="author" content="András Szabácsik">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800&amp;subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.1.13/jquery.mousewheel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.13.0/umd/popper.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$( "body" ).append ( "<h1>Hello World</h1>" );
$( "body" ).append ( "<p>It works</p>" );
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment