-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 1.1 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Главная</title>
<style>
.wrap{
display: flex;
padding-bottom: 10px;
gap: 20px;
}
.outputs{
display: flex;
padding-bottom: 10px;
gap: 100px;
}
</style>
</head>
<body>
<div class="wrap">
<div>
<input type = "text" id = "text1">
<button id = "button1">send to shifr</button>
</div>
<div>
<input type = "text" id = "text2">
<button id = "button2">send to deshifr</button>
</div>
<select size="3" id="shifrator">
<option disabled>Выберите шифратор</option>
<option value="cezar">Цезарь</option>
<option value="ceza">Цезар</option>
</select>
<div>
<input type = "text" id = "text3">
<button id = "button3">password</button>
</div>
</div>
<div class="outputs">
<div>
<div>shifr:</div>
<div>-----</div>
<div id = "output1"></div>
</div>
<div>
<div>deshifr:</div>
<div>-------</div>
<div id = "output2"></div>
</div>
</div>
<script src = "script.js"></script>
</body>
</html>