Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<style type="text/css">
  h1 {color:green;}
  p {color:purple;}
</style>
</head>
<body>
  <script>
    (function() {
      var link = document.createElement('link');
      link.rel = "stylesheet";
      // This next line would refer to our .css file,
      // with the .css (we don't have .css on it her
      // because of the way JSBin works)
      link.href = "/owoquz/1";
      document.getElementsByTagName('style')[0].parentNode.appendChild(link);
    })();
  </script>
<h1>A heading</h1>
<p>A paragraph.</p>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers