Mark-up Language : "구조를 표현 하는 언어"
HTML의 요소(Element)
HTML의 속성(Attribute)은 이름(name)과 값(value) 두 가지로 구성됩니다.
HTML Tag 분류
<html></html>
<head></head>
<body></body>
<style></style>
<script></script>
<meta />
<link />
<div></div>
<span></span>
<ul>...</ul>, <ol>...</ol>
<li></li>
<table>...</table>
<thead></thead>
<tbody></tbody>
<th></th>
<tr></tr>
<td></td>
<a href=""></a>
<img />
<br>
<iframe></iframe>
<form></form>
<input /> <!-- 'input' tag는 정말 많은 type들이 있습니다. -->
<textarea></textarea>
<select>...</select>
<option></option>
<button></button>
자료 출처: 코드스테이츠