Back to Demo

Hello World Code

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Hello World</title>
    <link rel="icon" type="image/png" href="../../../favicon.png">
    <script defer src="../../../pyscript/pyscript.js"></script>
    <link rel="stylesheet" href="hello_world.css">
</head>
<body>
<py-config src="../py_config.local.toml"></py-config>
<h1>Hello ...</h1>
<div id="output"></div>
<h6>More Info</h6>
<py-script>
        pyscript.write("output", "...world")
</py-script>
</body>
</html>

hello_world.css

h1 {
    font-weight: normal;
}

hello_world.js

/* Stuff here */