Skip to content

Instantly share code, notes, and snippets.

@ggoodman
Forked from anonymous/index.html
Created April 5, 2012 17:33
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 ggoodman/2312729 to your computer and use it in GitHub Desktop.
Save ggoodman/2312729 to your computer and use it in GitHub Desktop.
Basic web snippet
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>Basic plunk!</h1>
<p>If the header above is red, then you know Plunker is working!</p>
<!-- Put your html here! -->
</body>
</html>
// Add your javascript here
/* Put your css in here */
h1 {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment