Skip to content

Instantly share code, notes, and snippets.

@helabenkhalfallah
Created April 10, 2024 19:52
Show Gist options
  • Save helabenkhalfallah/74960ac59c4f545e7cd9333023a82f20 to your computer and use it in GitHub Desktop.
Save helabenkhalfallah/74960ac59c4f545e7cd9333023a82f20 to your computer and use it in GitHub Desktop.
Component Structure
<!-- Script Section -->
<!-- Define a variable 'name' with the initial value 'World' -->
<script>
let name = 'World';
</script>
<!-- Markup Section -->
<!-- Display a greeting message with the value of the 'name' variable -->
<h1>Hello, {name}!</h1>
<!-- Style Section -->
<!-- Apply blue color to the h1 element -->
<style>
h1 {
color: blue;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment