IT/- 프로그래밍
HTML5/CSS3 <pre>태그 : 있는 그대로 보여준다
혁준7519
2017. 5. 21. 15:32
<pre>태그 : 있는 그대로 보여준다
html)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, height=device-height, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0"> <title>Insert title here</title> </head> <body> <pre> $("#test").click(function(){ 스크립트 소스가 그대로 보여짐 }); </pre> </body> </html> | cs |
결과