Skip to content

Instantly share code, notes, and snippets.

@malekkh
malekkh / index.html
Created October 3, 2025 11:25
Task 2 – Debugging & DOM Manipulation
<button id="helloBtn">Click Me</button>
<script>
const helloBtn = document.getElementById('helloBtn');
helloBtn.addEventListener('click', () => {
helloBtn.disabled = true;
alert("Hello from Najahak!");
setTimeout(() => {
helloBtn.disabled = false;
}, 5000);
@malekkh
malekkh / index.html
Created October 3, 2025 11:15
Task 1 – Interactive UI Component
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Toggle Card</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="card" id="card">