31 lines
722 B
HTML
31 lines
722 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>WC demo</title>
|
|
<script type="module" src="Counter.mjs"></script>
|
|
<script type="module" src="Toggle.mjs"></script>
|
|
<script type="module" src="HelloWorld.mjs"></script>
|
|
<script type="module" src="Object.mjs"></script>
|
|
<style>
|
|
* {
|
|
font-size: larger
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
Counter: <my-counter></my-counter>
|
|
</div>
|
|
<div>
|
|
Toggle: <my-toggle></my-toggle>
|
|
</div>
|
|
<div>
|
|
String: <my-hello-world />
|
|
</div>
|
|
<div>
|
|
Object: <my-object />
|
|
</div>
|
|
</body>
|
|
</html>
|