오늘 HTML에 대해 전체적으로 공부했다..
원래 배움의 끝이 없다는 코딩이 한번 더 실감나는 날🙃
오늘은 전체적으로 공부하면서 머리속에 저장하는 마음으로 쭉 나열해봐야겠다.
HTML
tag들의 집합
구조를 만들기 위한 마크업언어
트리구조
=> html, head, body
most used tags in HTML
ul vs ol
-> unordered(순서가 없는) vs ordered (순서가 있는)
id vs class
-id : 고유한 이름 (#), 사용횟수 적음
-class : 반복되는 영역을 유형별로 분류(.), 묶어서 구분, 여러 중복요소수정
plus
<form action="submit">
<input id="todo">
<input id="todo_workout" type="checkbox">
<label for="todo_workout">운동</label>
<input id="todo_study" type="checkbox">
<label for="todo_study">공부</label>
</div>
<div>
<button> 오늘 할 일 완료 </button>
button type
select
p(paragraph) vs div (division)
2/14일 종합퀴즈 오답노트
<script src = "my-java-script.js"></script>