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>
      The Wailers disbanded in <span class="year">1974</span>, and Marley 
      pursued a solo career upon his relocation to England 
      which culminated in the release of the album 
      <span class="album">Exodus</span> in <span class="year">1977</span>, 
      which established his worldwide reputation and 
      elevated his status as one of the world's best-selling artists of all time, 
      with sales of more than 75 million records.
    </p>
  </body>
</html>
 
.album {
  font-weight: bold;
}
.year {
  color: green;
}
Output

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

Dismiss x