16 lines
555 B
HTML
16 lines
555 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Hello World!</title>
|
|
<!-- linking to PyScript assets -->
|
|
<link rel="stylesheet" href="https://pyscript.net/releases/2022.12.1/pyscript.css" />
|
|
<script defer src="https://pyscript.net/releases/2022.12.1/pyscript.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- Put Python code inside the the <py-script> tag -->
|
|
<py-script>display("Hello World!") print("miles")</py-script>
|
|
</body>
|
|
</html>
|