You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
6 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Расчёт стоимости бассейна</title>
|
||
|
<meta charset="utf-8" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<h2>Расчёт стоимости бассейна</h2>
|
||
|
<form>
|
||
|
<input type="number" name="quantity" min="100" max="1000" id="x" style="width: 100px;" placeholder="Длина"/><br />
|
||
|
<input type="number" name="quantity" min="100" max="1000" id="y" style="width: 100px;" placeholder="Ширина"/><br />
|
||
|
<input type="number" name="quantity" min="100" max="1000" id="z" style="width: 100px;" placeholder="Глубина"/><br />
|
||
|
<input type="number" name="quantity" min="1" max="100" id="s" style="width: 100px;" placeholder="Стоимость кв.м."/><br />
|
||
|
|
||
|
<br/>
|
||
|
<input id="est" type="button" value="Вычислить" onclick="calc()"/>
|
||
|
<input id="reset" type="reset" value="Сброс"/>
|
||
|
</form>
|
||
|
<p id="result"> = </p>
|
||
|
</div>
|
||
|
|
||
|
<div id="stage-container" style="height: 800px;"></div>
|
||
|
|
||
|
<script src="js/graphics.min.js"></script>
|
||
|
<script src="js/pool.js"></script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|