Skip to content

Instantly share code, notes, and snippets.

View jawadzd's full-sized avatar
👨‍💻
coding

Jawad Zeyneddin jawadzd

👨‍💻
coding
View GitHub Profile
@jawadzd
jawadzd / index.html
Created October 3, 2025 17:16
Task 2 – Debugging & DOM Manipulation
<button id="helloBtn" type="button">Click Me</button>
<button id="jsonBtn" type="button">Get JSON</button>
<pre id="jsonOut" aria-live="polite" style="background:#f6f8fa;padding:10px;border-radius:4px;max-width:640px;white-space:pre-wrap;
overflow:auto;margin-top:8px"></pre>
<script>
document.addEventListener("DOMContentLoaded", () => {
const helloBtn = document.getElementById("helloBtn");
const jsonBtn = document.getElementById("jsonBtn");
@jawadzd
jawadzd / index.html
Created October 3, 2025 17:07
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.0" />
<title>Interactive Card</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="card" id="card">