<html>
<head>
<title>코딩네컷 만들기</title>
</head>
<body>
<h1>몸통부분!</h1>
</body>
</html>
<div>division의 약자, 구역을 나누는 역할</div>
<p>paragraph의 약자, 문단</p>
<h1>heading 태그, 제목은 제목이에요.</h1>
<h2>h2는 소제목입니다.</h2>
<h3>h3~h6 h 뒷 숫자가 ↑, 글자 크기는 작아지고 중요도 ↓ </h3>
<a href="https://spartacodingclub.kr/"> 하이퍼링크(링크가 연결된 글자) </a>
<img src="https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/free/logo_teamsparta.png" width="300"/>
<input type="text"> #로그인을 눌렀을때 입력할 수 있는 필드 input 필드(태그)라고 함
<button>버튼(누를 수 있는 어떤 형태)</button>
.myclass {
color: red;
}
$ css 사용
<h1>헤딩태그</h1>
# 이렇게 헤딩태그 생성
# 클래스를 부여해보면
<h1 class="myclass(클래스명)">헤딩태그</h1>
$ html 사용

→ color: 색; 을 통해 글자 색 변경 가능
→ background_cloor: 색; 을 통해 배경 색 변경 가능
#myid {
color: blue;
}
$ css 사용
<h1>아이디 헤딩태그</h1>
# id 부여하면
<h1 id="myid">아이디 헤딩태그</h1>
$ html 사용
