Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mind-miner-dave/e9424bc4270122529a9dded8764aa467 to your computer and use it in GitHub Desktop.
Save mind-miner-dave/e9424bc4270122529a9dded8764aa467 to your computer and use it in GitHub Desktop.
HTML - u tag & s tag
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p><u>철자 오류</u>를 표시할 때는 u 태그를 사용합니다.</p>
<p><s>유효하지 않은 정보</s>를 표시할 때는 s 태그를 사용해요.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment