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>Exercise 1: Change Text
Section titled “Exercise 1: Change Text”h1 ရဲ့ စာသားကို “JavaScript is Cool! 😎” လို့ ပြောင်းပေးပါ။
let h1 = document.querySelector("#title");// Your code here...Exercise 2: Change Image Source
Section titled “Exercise 2: Change Image Source”img ရဲ့ src ကို “dog.jpg” လို့ ပြောင်းပေးပါ။
let img = document.querySelector("#image");// Your code here...Challenge: Style Change 🎨
Section titled “Challenge: Style Change 🎨”#box ရဲ့ background color ကို blue ပြောင်းပြီး၊ width ကို 200px ပြောင်းပေးပါ။
let box = document.querySelector("#box");// Your code here...