code 태그

프로그래밍 코드를 표시할 때는 code태그를 사용합니다.

code태그 사용법

<code>
word = "hello world"
print(word)
exit()
</code>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>code 태그 학습</title>
</head>
<body>
    <code>
    word = "hello world"<br>
    print(word)<br>
    exit()
    </code>
</body>
</html>

결과

code tag