-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.12 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.12 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
38
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Xanadu Web Components + TS</title>
<link rel="stylesheet" href="./development.css" />
<script type="module" src="./development.ts"></script>
</head>
<body>
<header>
<h1>Vite + Web Components</h1>
</header>
<main>
<x-countdown days="2" hours="3" minutes="5" seconds="7"></x-countdown>
<x-countdown
class="viapart"
days="3"
hours="4"
minutes="6"
seconds="8"
></x-countdown>
<x-countdown days="4" hours="5" minutes="7" seconds="9"></x-countdown>
<x-countdown
class="viacustomproperty"
days="3"
hours="4"
minutes="6"
seconds="8"
></x-countdown>
<x-countdown hours="9" minutes="9" seconds="9"></x-countdown>
<x-countdown minutes="8" seconds="8"></x-countdown>
<x-countdown seconds="7"></x-countdown>
<x-countdown></x-countdown>
</main>
</body>
</html>