Wordle Clone Coding HTML, JS
✅ HTML class외에도 data-index라는 것을 주어서 그 박스를 찾아가기 쉽도록 만들어 놓기 <div class="box_row row_0"> <div class="box_block" data-index="00"></div> <div class="box_block" data-index="01"...
✅ HTML class외에도 data-index라는 것을 주어서 그 박스를 찾아가기 쉽도록 만들어 놓기 <div class="box_row row_0"> <div class="box_block" data-index="00"></div> <div class="box_block" data-index="01"...
✅ DAILY REPORT 📌 TO-DO LIST submit blog post 중간보고, 일일보고 슈퍼코딩 19, 20, 21, 22강 18강: CarrotMkt header 19강: footer ✅ Today I Learned CarrotMkt Chat page 당근마켓에서 채팅 페이지를 HTML, CSS 사용하...
✅ Interm Report 📌 TO-DO LIST submit blog post 중간보고, 일일보고 슈퍼코딩 16, 17, 18강 슈퍼코딩 30강 ✅ Today I Learned REST Representational State Transfer 네트워크 아키텍쳐 스타일 중 하나 웹 서비스 간의 통...
✅ transition to change property of item with duration css 값이 변화할 때 프로퍼티 값이 duration에 걸쳐 일어나도록 하는 것이다. duration을 부여해 속도를 조절한다. 왜 ❓ css 스타일 변경을 부드럽게 표현하기 위해!! 몇 초 동안 바뀔건지, 어떻게 자연스...
✅ INTERM REPORT_중간 보고 📌 TO-DO LIST submit blog post 중간보고, 일일보고 슈퍼코딩 11, 12, 13, 14, 15강 github blog add avartar photo bring Notion to Blog ✅ Today I Learned Input Tags v...
Input for recieving the input data of the user Input Types button checkbox email image number radio: a single value to be selected out of multiple choices range reset: 초기화 ...
organized frequently used CSS and what I get confused the most ✅ justify-content to arrange itmes in axis center space-between first item is flush with the start, last item with the end...
✅ 중간 보고 📌 TO-DO LIST submit blog post 중간보고, 일일보고 슈퍼코딩 1강~10강 인턴 notion 읽기 과제 “what is DOM” 과제 “Header tags” github blog add avartar photo bring Notion to Blog how to do TOC in gi...
Object const Sohee= { name: sohee, gender: female, age: 123, job: programmer, adress: } console.log(Sohee.job); programmer Sohee.hobby = swimming; console.log(Sohee.hobby...
DOM: Document Object Model all the objects that are on a document on the web document as a whole, (head, tables, table headers, text..) allows programming language to interact with the docu...