mirror of
https://github.com/flynx/Course-JavaScript.git
synced 2025-12-17 17:11:43 +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>
|