viewof height = {
const form = html`<form class="observablehq--inspect">height = <input name=i type=number min=0 value=720 step=1 style="padding:2px;margin:-2px 0;width:120px;"></form>`;
(form.oninput = () => form.value = form.i.valueAsNumber)();
return form;
}