mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
22 lines
587 B
HTML
22 lines
587 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PyDom Example (MicroPython)</title>
|
|
<link rel="stylesheet" href="../dist/core.css">
|
|
<script type="module" src="../dist/core.js"></script>
|
|
</head>
|
|
<body>
|
|
<script type="mpy" src="pydom.py"></script>
|
|
|
|
<div id="system-info"></div>
|
|
|
|
<button id="just-a-button">Click For Time</button>
|
|
<button id="color-button">Click For Color</button>
|
|
<button id="color-reset-button">Reset Color</button>
|
|
|
|
<div id="result"></div>
|
|
</body>
|
|
</html>
|