Files
racket-webview/example/index.html
2026-03-09 18:04:08 +01:00

36 lines
864 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Example of racket webview</title>
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
<h1 id="h1">Example</h1>
<p>
Please press this <button id="btn">Button</button> for something to happen.
</p>
<p>
Some input text: <input type="Text" id="inp1" value="Default input value" />
</p>
<p>
Some input date: <input type="Date" id="inp2" value="2026-01-01" />
</p>
<div id="test" class="yellow">
<p> Hi there! <a href="/">Click here to load this page again</a></p>
<p> To <a href="page2.html">page 2</a></p>
</div>
<h1 id="t" class="blue">Ja</h1>
Ja
<h1> Nou...</h1>
<div class="image">
<img src="test.jpg" />
</div>
<script>
console.log(document.cookie);
document.cookie = "test-koekje=koekje_in_seconden:" + Date.now();
</script>
</body>
</html>