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>
      JavaScript often abbreviated as JS, is a high-level, interpreted programming language that conforms to the ECMAScript specification. It is a programming language that is characterized as dynamic, weakly typed, prototype-based and multi-paradigm.
    </p>
    
    <p class="main">
      Alongside HTML and CSS, JavaScript is one of the core technologies of the World Wide Web.[9] JavaScript enables interactive web pages and is an essential part of web applications. The vast majority of websites use it,[10] and major web browsers have a dedicated JavaScript engine to execute it.
      
    </p>
  </body>
</html>
 
body {
  color: #333333;
}
p {
  /* 
  will inherit the font color from body by default 
  */
}
p.main {
 /* 
  override the font color inherited from body 
 */
  color: blue;
}
Output

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

Dismiss x