62 lines
2.5 KiB
HTML
62 lines
2.5 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="ru">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Vite App</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container-sm p-3">
|
||
|
<form id="plus">
|
||
|
<h2 class="text-center mb-3">Plus</h2>
|
||
|
<div class="mb-3">
|
||
|
<div class="input-group mb-1">
|
||
|
<input type="number" class="form-control" placeholder="V1" aria-label="First Number" name="v1" autocomplete="off">
|
||
|
<span class="input-group-text">+</span>
|
||
|
<input type="number" class="form-control" placeholder="V2" aria-label="Second Number" name="v2" autocomplete="off">
|
||
|
<span class="input-group-text" id="plus_result">0</span>
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
<form id="minus">
|
||
|
<h2 class="text-center mb-3">Minus</h2>
|
||
|
<div class="mb-3">
|
||
|
<div class="input-group mb-1">
|
||
|
<input type="number" class="form-control" placeholder="V1" aria-label="First Number" name="v1" autocomplete="off">
|
||
|
<span class="input-group-text">-</span>
|
||
|
<input type="number" class="form-control" placeholder="V2" aria-label="Second Number" name="v2" autocomplete="off">
|
||
|
<span class="input-group-text" id="minus_result">0</span>
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
<form id="toLowerCase">
|
||
|
<h2 class="text-center mb-3">To Lower Case</h2>
|
||
|
<div class="mb-3">
|
||
|
<div class="input-group mb-1">
|
||
|
<input type="text" class="form-control" placeholder="String" aria-label="Your String" name="value" autocomplete="off">
|
||
|
<span class="input-group-text" id="tlc_result"></span>
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
<form id="toUpperCase">
|
||
|
<h2 class="text-center mb-3">To Upper Case</h2>
|
||
|
<div class="mb-3">
|
||
|
<div class="input-group mb-1">
|
||
|
<input type="text" class="form-control" placeholder="String" aria-label="Your String" name="value" autocomplete="off">
|
||
|
<span class="input-group-text" id="tuc_result"></span>
|
||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
</div>
|
||
|
<script type="module" src="main.js"></script>
|
||
|
</body>
|
||
|
</html>
|