Last active
August 29, 2015 14:04
-
-
Save farrukhsubhani/ad282956bdcae34e997e to your computer and use it in GitHub Desktop.
Basic HTML CSS and JS Structure
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
/* CSS Comments */ | |
p { | |
color:#33f; | |
} |
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
alert("hello"); | |
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
<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