HTML 4에서 HTML의 요소는 웹 페이지의 텍스트에 밑줄을 긋는 데 사용되었지만 HTML5는 를 재정의하여 일반 텍스트와 다른 텍스트를 표시합니다.
이제 태그를 구현하는 예를 살펴보겠습니다-
예시
<!DOCTYPE html> <html> <body> <h2>Shortcut Keys</h2> <p>Use the following <u>shortcut</u> keys:</p> <p><strong>Cut</strong>: <tt>CTRL</tt>+<tt>X</tt></p> <p><strong>Copy</strong>: <tt>CTRL</tt>+<tt>C</tt></p> <p><strong>Paste</strong>: <kbd>CTRL</tt>+<tt>V</tt></p> <p><strong>Undo</strong>: <tt>CTRL</tt>+<tt>Z</tt></p> </body> </html>
출력
위의 예에서 우리는
- 태그를 사용하여 기본 일반 텍스트가 아닌 다른 텍스트를 표시했습니다-
<p>Use the following <u>shortcut</u> keys:</p> <p><strong>Cut</strong>: <tt>CTRL</tt>+<tt>X</tt></p>