-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadjustment.html
More file actions
26 lines (24 loc) · 867 Bytes
/
adjustment.html
File metadata and controls
26 lines (24 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculation - Adjustment</title>
<link rel="stylesheet" href="stylea.css">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div>
<h1>Calculation - Adjustment</h1>
<input type="number" id="basePay" placeholder="Enter BasePay">
<input type="number" id="hours" placeholder="Enter the number of hours">
<button onclick="calculate()">Calculate</button>
<div id="result" style="display: none;"></div>
<button id="backButton">Return</button>
<!-- Добавьте аудио элемент здесь -->
<audio id="backgroundMusic" src="OST-Resident-evil-3.mp3" preload="auto"></audio>
</div>
</div>
<script src="scripta.js"></script>
</body>
</html>