<h1> ~ <h6>
<p>, <pre>, <div>
<li>, <ol>, <ul>
<br>
<strong>, <em>, <u>, <b>
<a>
클릭 후
<img>
<table>, <tr>, <td>
<form>, <input>, <label>
블록 태그: <h1>~ <h6>, <p>, <li>,<ul>, <ol>, <table>, <pre>, <div> 등
인라인 태그: <a>, <em>, <strong>, <b>, <span>, <u>, <img> 등
<p>
태그와 </p>
태그와 같이 한 쌍으로 쓰이는가 아니면 **<br>
태그와 같이 단독**으로 쓰이는가에 따라 분류할 수 있다.<img>
, <br>
등의 빈 태그는 단독으로 사용된다.실습 코드
<h1> <img src="https://cdn-icons-png.flaticon.com/512/919/919827.png" width="50"> HTML 태그를 이용한 간단한 실습 <img src="https://cdn-icons-png.flaticon.com/512/919/919827.png" width="50"> </h1> <ul> <li> <h2>Form 만들기</h2> <a href="https://www.notion.so/HTML-efebfcb89a5f412d872d21b815ca28db"><em><b>참고(클릭)</b></em></a> </li> </ul> <br> <br> <form> <h3>정보입력 Form</h3> <br> <fieldset> <legend>이름 & 나이</legend> <label id="name">이름 : </label><input type="text" placeholder="이름을 입력하세요."> <br> <label id="age">나이 : </label><input type="text" placeholder="나이를 입력하세요."> </fieldset> <br> <fieldset> <legend>학년 선택</legend> <input type="radio" id = "Freshman" name="grade"/> <label for="Freshman">Freshman</label> <br> <input type="radio" id = "Sophomore" name="grade"/> <label for="Sophomore">Sophomore</label> <br> <input type="radio" id = "Junior" name="grade"/> <label for="Junior">Junior</label> <br> <input type="radio" id = "Senior" name="grade"/> <label for="Senior">Senior</label> </fieldset> <br> <fieldset> <legend>소속 학부</legend> <select name="major"> <option value="1">전산전자공학부</option> <option value="2">기계제어공학부</option> <option value="3">상담심리학부</option> <option value="4">경영경제학부</option> <option value="5">콘텐츠디자인학부</option> <option value="6">생명공학부</option> </select> </fieldset> <br> <input type="button" value="제출"> </form>
결과물