-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=5.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- относительный путь-->
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="script.js"></script>
<!-- прямой путь-->
<!-- <link rel="stylesheet" href="https://dewfill.com/libraries/popup/style.css">-->
<!-- <script src="https://code.jquery.com/jquery-3.6.0.js"></script>-->
<!-- <script src="https://dewfill.com/libraries/popup/script.js"></script>-->
</head>
<body>
<!--window must be unique-->
<div id="window1" class="window">
<p class="text">Modal title</p>
<button class="ask">2 BUTTONS</button>
<button class="accept">ДА</button>
<button class="deny">НЕТ</button>
</div>
<div id="window2" class="window">
<p class="text">Вам пришло сообщение</p>
<button class="ask">1 BUTTON</button>
<button class="button">ОК</button>
</div>
<div id="window3" class="window">
<p class="text">Введите имя:</p>
<label>
<input type="text" class="input">
</label>
<button class="event">INPUT</button>
<button class="submit">Отправить</button>
</div>
<script src="user.js"></script>
</body>
</html>