html에서 pre 태그를 사용하는 방법
<html> <head> </head> <body> 12344 </body> </html>
위 웹페이지의 소스코드를 입력했다면, 이제 소스코드를 출력하고 싶습니다. -
그럼 pre 태그를 사용한다면 어떻게 해야 할까요?
<pre class="brush:php;toolbar:false"> 这里写你想写的代码~~~~
이렇게 쓰이는데요
<html> <head> </head> <body> 12344 <pre class="brush:php;toolbar:false"> <html> <head> </head> <body> 12344 </body> </html>