-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.86 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
<!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="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div class="toast-component-wrapper">
<h2 class="heading">Toast</h2>
<div id="show-toast" class="toast">
<div class="toast-wrapper">
<div class="tick">
<i class="fa-solid fa-check"></i>
</div>
<div class="toast-text-box">
<p class="toast-heading">Account created</p>
<p class="toast-description">We've created account for you.</p>
</div>
<div class="close-toast-btn">
<button id="close-btn" class="close-btn">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
</div>
</div>
<button id="btn-toast" class="btn-toast">Show Toast</button>
</div>
<div class="tooltip-component-wrapper">
<h2 class="heading">Tooltip</h2>
<p class="hover-text">Hover me </p>
<p class="hovered-text">Hey, I'm here!</p>
<div class="btn-tooltip">
<button id="close-btn-tooltip" class="btn" title="abc">Close on Click - true(default)</button>
<p id="close-text" class="close-text">I close on click</p>
</div>
</div>
<script src="https://kit.fontawesome.com/92bd300a98.js" crossorigin="anonymous"></script>
<script src="/index.js"></script>
</body>
</html>