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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Interactive Card Component</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div class="card" id="interactiveCard"> |
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
<button id="btn">Click Me</button> | |
<div id="output"></div> | |
<script> | |
const btn = document.getElementById('btn'); | |
const output = document.getElementById('output'); | |
btn.addEventListener('click', function() { | |
btn.disabled = true; | |
alert('Hello from Najahak!'); | |