Skip to content

Instantly share code, notes, and snippets.

@kdabir
Created March 19, 2012 12:47
Show Gist options
  • Save kdabir/2110793 to your computer and use it in GitHub Desktop.
Save kdabir/2110793 to your computer and use it in GitHub Desktop.
Including external and inline javascript and css in html file
<!doctype html>
<html>
<head>
<title>Including javascript and css in html</title>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
alert('hello world!');
});
</script>
<link rel="stylesheet" href="styles.css" media="screen" />
<style type="text/css">
body {font-family: Arial, sans-serif;}
</style>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment