Skip to content
GitHub

Interactive Section - Manipulation

အောက်ပါ HTML ရှိတယ်လို့ သဘောထားပါ။

<h1 id="title">Old Title</h1>
<img id="image" src="cat.jpg" alt="Cat Picture">
<div id="box" style="width: 100px; height: 100px;"></div>

h1 ရဲ့ စာသားကို “JavaScript is Cool! 😎” လို့ ပြောင်းပေးပါ။

let h1 = document.querySelector("#title");
// Your code here...

img ရဲ့ src ကို “dog.jpg” လို့ ပြောင်းပေးပါ။

let img = document.querySelector("#image");
// Your code here...

#box ရဲ့ background color ကို blue ပြောင်းပြီး၊ width ကို 200px ပြောင်းပေးပါ။

let box = document.querySelector("#box");
// Your code here...