Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>JS Bin</title>
  </head>
  <body>
    <p>
      <span>HTML</span> elements are the building 
      blocks of <span>HTML</span> pages. With <span>HTML</span> constructs, images 
      and other objects, such as interactive forms may be 
      embedded into the rendered page. 
      <span>HTML</span> elements are delineated by tags, 
      written using angle brackets. 
      The <a href="#"> Mozilla Developer Network</a> is a great
      resource for learning more about <span>HTML</span>.
    </p>
  </body>
</html>
 
p {
  background-color: #EEEEEE;
}
span {
  background-color: #FFFF33; 
}
a {
  background-color: #FFFFFF; 
}
Output

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

Dismiss x