MDN 문서 : https://developer.mozilla.org/ko/docs/Web/HTML/Element
<tagname attname="attrvalue"> content </tagnemt>
<!-- 해더 태그 -->
<h1>Hello this is my homepage</h1>
<h2>Hello this is my homepage</h2>
<h3>Hello this is my homepage</h3>
<h4>Hello this is my homepage</h4>
<h5>Hello this is my homepage</h5>
<h6>Hello this is my homepage</h6>
<!-- 순서가 없는 리스트 -->
<ul>
<li>김치</li>
<li>고기</li>
<li>맥주</li>
</ul>
<!-- 순서가 있는 리스트 -->
<ol>
<li>김치</li>
<li>고기</li>
<li>맥주</li>
</ol>
<!-- 웹사이트 링크 -->
<a href="https://google.com" target="_blank">Go google gogogogogo!!!!!!!</a>
<!-- 이미지 -->
<img src="https://velog.velcdn.com/images/dnjs0397/post/6c86d632-1b3a-45ba-b444-0499b08594d6/image.png">
<input placeholder="text" type="text">
// required 적용해놓으면 입력 유효성 검사를 할 수 있음
// placeholder ="text" 해주면 원하는 텍스트를 미리 입력해놓을 수 있음
<input placeholder="password" type="password">
<input type="color">
<input type="button">
<input type="file">
기본 텍스트 입력 :
비밀번호 입력 :
색상 입력 :
버튼 :
업로드 :
<input placeholder="이렇게 희미하게" type="text">
<input required placeholder="입력하고 엔터치면 검사" type="text">
<input minlength="10" required placeholder="입력하고 엔터치면 검사" type="text">
<input type="file" accept=".pdf">
header : body의 해더
main : body의 메인 부분
footer : body의 꼬릿말 부분
div : 박스라 생각하면 됨 , 기본적으로 박스는 박스끼리 옆으로 배치할 수 없음
span : 짧은 문자를 위한 태그
p : 긴 문장을 위한 태그