-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.24 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;500&display=swap"
rel="stylesheet"
/>
<title>Document</title>
</head>
<body>
<div class="content">
<div class="task wrapper">
<div class="title">Введите две строки</div>
<input type="text" id="line1" placeholder="Первая строка" />
<input type="text" id="line2" placeholder="Вторая строка" />
<button id="taskBtn">Рассчитать</button>
</div>
<div class="answer wrapper">
<div class="title">Ответ</div>
<div class="answer-item">Первая строка: <span></span></div>
<div class="answer-item">Вторая строка: <span></span></div>
<div class="answer-item">Число перестановок: <span></span></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>