2015-03-25 19:26:22 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2016-06-06 15:56:19 +02:00
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/>
|
|
|
|
<title>Decode? Encode? DENcode!</title>
|
|
|
|
<script type="text/javascript" src="node_modules/core-js/client/shim.js"></script>
|
|
|
|
<script type="text/javascript" src="node_modules/zone.js/dist/zone.js"></script>
|
|
|
|
<script type="text/javascript" src="node_modules/reflect-metadata/Reflect.js"></script>
|
|
|
|
<script type="text/javascript" src="node_modules/systemjs/dist/system.src.js"></script>
|
2016-09-20 22:02:38 +02:00
|
|
|
<script type="text/javascript" src="node_modules/utf8/utf8.js"></script>
|
|
|
|
<script type="text/javascript" src="node_modules/quoted-printable/quoted-printable.js"></script>
|
2016-09-27 23:50:52 +02:00
|
|
|
<script type="text/javascript" src="node_modules/punycode/punycode.js"></script>
|
2016-06-06 15:56:19 +02:00
|
|
|
|
|
|
|
<script type="text/javascript" src="systemjs.config.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
System.import("app").catch(function (err) {
|
|
|
|
console.log(err);
|
|
|
|
});
|
|
|
|
</script>
|
2016-09-21 01:43:21 +02:00
|
|
|
<style>
|
|
|
|
@font-face {
|
|
|
|
font-family: "ABeeZee";
|
|
|
|
font-stretch: normal;
|
|
|
|
font-style: normal;
|
|
|
|
font-variant: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
src: local("ABeeZee Regular"),
|
|
|
|
local("ABeeZee-Regular"),
|
|
|
|
local("ABeeZee"),
|
|
|
|
url("abeezee-regular.woff") format("woff");
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: "ABeeZee", sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
padding: 1em 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
</style>
|
2015-03-25 19:26:22 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2016-06-06 15:56:19 +02:00
|
|
|
<h1>Decode? Encode? DENcode!</h1>
|
|
|
|
<noscript>This webpage lets you decode and encode data and text to and from various formats. But
|
|
|
|
it requires you to <strong>enable Javascript</strong> to do so. So please turn it on in your
|
|
|
|
Browser. You won't regret it!
|
|
|
|
</noscript>
|
2016-08-15 17:12:11 +02:00
|
|
|
<den-app>
|
|
|
|
<div style="text-align:center;">Please hold on, we're starting the turbines ...</div>
|
|
|
|
</den-app>
|
2015-03-25 19:26:22 +01:00
|
|
|
</body>
|
2016-06-06 15:56:19 +02:00
|
|
|
</html>
|