Created
April 10, 2024 19:52
-
-
Save helabenkhalfallah/74960ac59c4f545e7cd9333023a82f20 to your computer and use it in GitHub Desktop.
Component Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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