Javascript만을 활용한 스타일 변경 예제 예제 title 클릭 시 글씨 변경 이미지 클릭 시 다른 이미지로 변경 My Profile 이름 : 도레미 주소 : somewhere 연락처 : 1234-5678 const title = document.querySelector("#title"); const pfImg = document.querySelector("#profile img"); title.onclick = () => (title.innerHTML = "프로필"); pfImg.onclick = () => (pfImg.src = "images/pf2.png");