Another Page

Another Page

demo.js
let a = 1;
 
console.log(a);

Component

External Component

HTML CSS and JS

demo.html
<div class="container">
  <h1>Heading</h1>
  <p>Paragraph</p>
  <aside>Here we are highlighitng the 1st line of the HTML.</aside>
</div>
demo.css
.container {
  background-color: #f1f1f1;
  padding: 20px;
  margin: 20px;
}
/* With comment support within files, this is showcasing CSS while highlighting the 2nd line. */

You can also write plain text between the code snippets.

demo.js
let example = 'This Example is highlighting the 1st line';
 
console.log(a);