mirror of
https://github.com/flynx/Course-JavaScript.git
synced 2025-10-30 11:30:07 +00:00
12 lines
220 B
HTML
12 lines
220 B
HTML
|
|
<html>
|
||
|
|
<script src="slang.js"></script>
|
||
|
|
<body>
|
||
|
|
</body>
|
||
|
|
<script>
|
||
|
|
document.body.innerHTML='<pre>'+BOOTSTRAP
|
||
|
|
.replace(/&/g, '&')
|
||
|
|
.replace(/>/g, '>')
|
||
|
|
.replace(/</g, '<')+'</pre>'
|
||
|
|
</script>
|
||
|
|
</html>
|