-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.05 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Web Components</title>
<!-- Below Style won't alter web comp -->
<style>
* {
box-sizing: border-box;
}
html {
--color-primary: #a4fcda;
font-family: sans-serif;
}
</style>
<script src="js/tooltip.js"></script>
<script src="js/confirm-link.js"></script>
</head>
<body>
<p class="hello">
<uc-tooltip text="Custom tooltip text"><span>Web Components</span></uc-tooltip> are awesome!
</p>
<p>
<uc-tooltip class="important">Default</uc-tooltip> tooltip test!
</p>
<p><uc-tooltip text="this is example of custom slot"></uc-tooltip></p>
<a is="uc-confirm-link" href="https://google.com" target="_blank" rel="noopener noreferrer">Google?</a>
<br>
<a href="html/modal.html" style="border: #0060b9 3px solid;">Go to Modal Web Component</a>
</body>
</html>