10초에 한번씩 명언과 배경사진이 바뀌는 페이지 만들기 코드 body { background-image: url("https://source.unsplash.com/random/?sea"); } "https://source.unsplash.com/random/?sea" URL을 통해, 배경 이미지가 랜덤으로 해변 풍경이 선택됩니다. //함수 정의 function updateQuote() { fetch("json/dummy01.json") .then(res => res.json()) .then(data => { const result = document.querySelector("#result"); const random = Math.floor(Math.random() * 30); // 0 ~ 29 사이의..