![](http://i1.daumcdn.net/thumb/T650x650/?fname=https://blog.kakaocdn.net/dn/orDGV/btrzkypYSY9/FQSi4N59MjmiJkFsHHH0k1/img.png)
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins"; } body { background: #7fb181; } .typing__wrap { display: flex; align-items: center; justify-content: center; height: 100vh; } .typing__inner { width: 60vw; min-height: 40vh; background: #fff; border-radius: 20px; padding..
![](http://i1.daumcdn.net/thumb/T650x650/?fname=https://blog.kakaocdn.net/dn/p9yAN/btrzmjZ7UrF/j9dk0ajI0nE61lJXJnr1Yk/img.png)
const musicWrap = document.querySelector(".wrap__music"); const musicImg = musicWrap.querySelector(".music__img img"); const musicSong = musicWrap.querySelector(".music__song"); const musicName = musicSong.querySelector(".name"); const musicArtist = musicSong.querySelector(".artist"); const musicProgress = musicWrap.querySelector(".music__progress"); const musicProgressBar = musicProgress.queryS..
![](http://i1.daumcdn.net/thumb/T650x650/?fname=https://blog.kakaocdn.net/dn/QQW9N/btrzpWPWGPJ/3z73yxQt7OKk5nHDNHb6sK/img.png)
* { margin: 0; padding: 0; box-sizing: border-box; } ul { list-style: none; } img { width: 100%; vertical-align: top; } body { background: #c9ad97; } .wrap__card { display: flex; align-items: center; justify-content: center; height: 100vh; } .card__inner { width: 700px; height: 700px; background-color: #fff; border-radius: 20px; padding: 30px; } .cards { display: flex; flex-wrap: wrap; justify-c..
![](http://i1.daumcdn.net/thumb/T650x650/?fname=https://blog.kakaocdn.net/dn/bneGgG/btrtlTzLxTK/FEyU50Vl0wEnki8Kx8u6C0/img.png)
const changeColor = document.querySelectorAll("#change01 .color a") changeColor.forEach(span => { span.addEventListener("click", () => { const colorName = span.dataset.color; document.querySelector("#change01 .text").style.color = colorName; }) }); .aa { display: flex; align-items: center; justify-content: center; } #change01 { text-align: center; } #change01 h3 { font-size: 25px; } #change01 .t..