24 lines
422 B
Plaintext
24 lines
422 B
Plaintext
package testrawelements
|
|
|
|
templ Example() {
|
|
<html>
|
|
<head></head>
|
|
<body>
|
|
<style><!-- Some stuff --></style>
|
|
<style>
|
|
.customClass {
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
<script>
|
|
$("div").marquee();
|
|
function test() {
|
|
window.open("https://example.com")
|
|
}
|
|
</script>
|
|
<h1>Hello</h1>
|
|
@templ.Raw("<div>World</div>")
|
|
</body>
|
|
</html>
|
|
}
|