mirror of
https://github.com/jlengrand/web-components-workshop-deprecated.git
synced 2026-03-10 08:51:23 +00:00
20 lines
646 B
HTML
20 lines
646 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script type="text/javascript" src="/bower_components/webcomponentsjs/webcomponents-lite.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>WebComponents workshop</h1>
|
|
<p>In this workshop, we will create new custom HTML Components</p>
|
|
<h2>Creating a cat image loader that renders fast</h2>
|
|
|
|
<cat-img-fast></cat-img-fast>
|
|
|
|
<script src="src/components/cat-img.js"></script>
|
|
<script src="src/components/cat-img-fast.js"></script>
|
|
</body>
|
|
</html> |