-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.27 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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/x-icon" href="https://cdn.allthings.how/wp-content/uploads/2021/10/allthings.how-how-to-disable-notification-badges-in-windows-11-taskbar-notification-badge-759x427.png?width=800">
<title>Show message</title>
</head>
<body>
<!-- <div>
<button class="btn btn--success btn--disabledeR ">GO TO NEXT</button>
<button class="btn btn--warn">OK</button>
<button class="btn btn--danger">TRY AGAIN</button>
</div> -->
<div id="toast">
</div>
<!-- btn -->
<div>
<div onclick=showSuccessToast() class="btn btn--success">Show success</div>
<div onclick=showErrorToast() class="btn btn--danger">Show error toast</div>
</div>
<script src="./main.js"></script>
</body>
</html>