Skip to content

Instantly share code, notes, and snippets.

@farrukhsubhani
Last active August 29, 2015 14:04
Show Gist options
  • Save farrukhsubhani/ad282956bdcae34e997e to your computer and use it in GitHub Desktop.
Save farrukhsubhani/ad282956bdcae34e997e to your computer and use it in GitHub Desktop.
Basic HTML CSS and JS Structure
/* CSS Comments */
p {
color:#33f;
}
alert("hello");
<html>
<head>
<title>Hello World</title>
<link rel="stylesheet" href="base.css" type="text/css" media="screen" charset="utf-8">
<script type='text/javascript' src='base.js'></script>
</head>
<body>
<p>Hello</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment