mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
16 lines
501 B
HTML
16 lines
501 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<form oninput="result.value=parseInt(a.value)+parseInt(b.value)">
|
|
<input type="range" id="b" name="b" value="50" /> +
|
|
<input type="number" id="a" name="a" value="10" /> =
|
|
<output name="result" for="b a">60</output>
|
|
</form>
|
|
</body>
|
|
</html> |