코드 | 구현 | ||||
<h1>h1</h1> <h2>h2</h2> <h3>h3</h3> <h4>h4</h4> <h5>h5</h5> <h6>h6</h6> |
h1h2h3h4h5h6 |
||||
abc<br>defg<hr>hij | abc defg hij |
||||
<ol> <li>abc</li> <li>def</li> </ol> <ul> <li>ghi</li> <li>jkl</li> </ul> |
|
||||
<em>Emphasis</em> <i>italic</i> <strong>strong</strong> <b>bold</b> <u>underbar</u> <abbr title="abbr">abbreviate</abbr> <q>quotation</q> <del>del</del> <cite>cite</cite> <a href="">anchor</a> <address>address</address> |
Emphasis italic strong bold underbar abbreviate quotation cite anchor address |
||||
A<sub>subscript</sub> B<sup>superscript</sup> |
Asubscript Bsuperscript | ||||
<pre>hello this is test code.</pre> <code>code</code> <var>variable</var> <kbd>keyboard tag</kbd> <samp>Samp</samp> <time datetime="20:00">20:00</time> *Time을 코딩으로 읽기 위한 목적으로 작성됨 |
hello this is test code. code variable keyboard tag Samp |
||||
<table> <tr> <td>ABC</td> <td>DEF</td> </tr> <tr> <td>가나다</td> <td>라마바</td> </tr> </table> |
* 가독성을 위해 테두리를 그렸습니다. |
||||
<img src="Domain.svg"> |
|
||||
<iframe src="구글 제공 링크"></iframe> | |||||
<input type="text" value="text"> <input type="range"> <input type="checkbox"> <input type="number" value="1"> <input type="radio"> <input type="submit"> <textarea rows="3"> 여러줄 입력 둘째줄 입력</textarea> <input type="file"> <button>버튼</button> |