lazyBoy/image/computer/cua-smoke.html

32 lines
871 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>LazyBoy Cua Smoke</title>
<style>
body { font-family: sans-serif; margin: 32px; }
#result { font-size: 20px; }
</style>
</head>
<body>
<h1>LazyBoy Cua Smoke</h1>
<p id="result">ready</p>
<p>
<button id="click" type="button">Smoke Click</button>
</p>
<p>
<input id="name" type="text" placeholder="type here" aria-label="Smoke Entry">
<button id="save" type="button">Smoke Save</button>
</p>
<script>
document.getElementById("click").onclick = function () {
document.getElementById("result").textContent = "clicked-ok";
};
document.getElementById("save").onclick = function () {
var value = document.getElementById("name").value;
document.getElementById("result").textContent = "typed:" + value;
};
</script>
</body>
</html>