This commit is contained in:
2026-03-04 18:15:45 +01:00
parent afa3778103
commit 3a2abf90f6
16 changed files with 1563 additions and 93 deletions

View File

@@ -3,15 +3,21 @@
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Example of racket webview</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
<h1>Example</h1>
<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>
<div id="test" class="yellow">
<p> Hi there!</p>
</div>
<h1 id="t" class="blue">Ja</h1>
Ja
<h1> Nou...</h1>
</body>
</html>

View File

@@ -1,4 +1,23 @@
body {
font-family: Arial;
font-family: sans-serif;
font-size: 11pt;
}
}
.yellow, div.yellow {
background: yellow;
color: blue;
}
.flop, div.flop {
font-weight: bold;
}
h1.yellow {
background: green;
}
h1.blue {
color: red;
}