-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modals</title>
<link rel="stylesheet" href="apc/lib.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>Чтобы начать пользоваться, просто введите любой текст в поле слева любой кнопки или оставьте текст по умолчанию, потом нажмите на кнопку.</p>
<div class="group"> <input type="text" class="alert-input" placeholder="Пример alert"> <button class="alert-button">Вывести в alert()</button> </div>
<div class="group"> <input type="text" class="prompt-input" placeholder="Пример prompt"> <button class="prompt-button">Вывести в prompt()</button> </div>
<div class="group"> <input type="text" class="confirm-input" placeholder="Пример confirm"> <button class="confirm-button">Вывести в confirm()</button> </div>
<p>
Исходный код можно посмотреть тут: <a href="https://github.com/ivan-developer-01/alert-prompt-confirm">github.com/ivan-developer-01/alert-prompt-confirm</a>
</p>
<script src="apc/lib.js"></script>
<script src="script.js"></script>
</body>
</html>