-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.29 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Платим налоги</title>
<link rel="shortcut icon" href="./favicon.ico">
<link href="./styles/reset.css" rel="stylesheet" />
<link href="./styles/index.css" rel="stylesheet" />
</head>
<body>
<main class="main">
<div class="content">
<h1>Прогрессивная шкала налогообложения 👺</h1>
<form id="form" class="form">
<div class="form-row">
<label for="amount">Считаем от суммы</label>
<input type="text" inputmode="numeric" id="amount" required />
<button type="button" class="multiply-button" id="multiply-button">
x 12
</button>
</div>
<div class="form-row">
<button type="submit" class="submit-button">Посчитать</button>
</div>
</form>
<div>
<h2>Результат 🙈</h2>
<div id="result"></div>
</div>
</div>
</main>
<script src="./scripts/index.js"></script>
</body>
</html>