58 lines
2.5 KiB
HTML
58 lines
2.5 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>ivi</title>
|
||
|
<link rel="stylesheet" href="css/style.css">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
|
||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
|
||
|
<script src="node_modules/handlebars/dist/handlebars.min.js"></script>
|
||
|
</head>
|
||
|
<body style="background: url('background.png')">
|
||
|
<style>
|
||
|
body {
|
||
|
background: #FFFF99 !important;
|
||
|
}
|
||
|
</style>
|
||
|
<header>
|
||
|
</header>
|
||
|
<main>
|
||
|
<form id="calc" class="from" method="" action="#" style="margin: 30px 0 0 30px">
|
||
|
<select id="operation" required="required">
|
||
|
<option value="">Выберите операцию</option>
|
||
|
<option>Деление</option>
|
||
|
<option>Умножение</option>
|
||
|
<option>Сложение</option>
|
||
|
<option>Вычитание</option>
|
||
|
</select>
|
||
|
<div style="color:black">Введите первое число</div>
|
||
|
<input id="firstDig" type="number" required="required" placeholder="Первое число">
|
||
|
|
||
|
<div style="color:black">Введите второе число</div>
|
||
|
<input id="secondDig" type="number" required="required" placeholder="Второе число">
|
||
|
|
||
|
<div style="color:black">Результат</div>
|
||
|
<input type="number" id="result">
|
||
|
|
||
|
<div style="margin-top: 10px">
|
||
|
<input id="startCalc" class="button" type="button" value="Посчитать"/>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
<form id="alert" class="from" method="" action="#" style="margin: 30px 0 0 30px">
|
||
|
<div style="color:black">Введите текст</div>
|
||
|
<input id="text" type="text" required="required" placeholder="Текст">
|
||
|
<input id="start" class="button" type="button" value="Показать"/>
|
||
|
</form>
|
||
|
|
||
|
|
||
|
<!-- <input id="button" class="buttonText" type="button" value="clickme"/>
|
||
|
<label for="text" >num1</label>
|
||
|
<input type="number" value="0" id="text" />
|
||
|
<label for="result" style="color:white">Result</label>
|
||
|
<input type="number" id="result" /> -->
|
||
|
</main>
|
||
|
<script src="js2.js"></script>
|
||
|
</body>
|
||
|
</html>
|