19 lines
454 B
HTML
19 lines
454 B
HTML
<!doctype html>
|
|
<html lang="en-GB">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>lion-steps complex demo</title>
|
|
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
|
|
<script src="../../fetch/fetch.js"></script>
|
|
<link rel="import" href="./complex-demo-app.html">
|
|
<style type="text/css">
|
|
body {
|
|
background-color: #f5f5f5;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<complex-demo-app></complex-demo-app>
|
|
</body>
|
|
</html>
|