15 lines
395 B
HTML
15 lines
395 B
HTML
|
|
<link rel="stylesheet" type="text/css" href="content/main_text/test.css">
|
||
|
|
|
||
|
|
<div id="example">This is a sentence.</div>
|
||
|
|
<button onclick="h()">JE</button>
|
||
|
|
<script>
|
||
|
|
window.sight.console("This appear in the console from the content/main_text. The content files reach the window.sight.")
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
|
||
|
|
window.sight.console("2")
|
||
|
|
function h(){
|
||
|
|
alert("hello2")
|
||
|
|
}
|
||
|
|
</script>
|