converter/index.html

33 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/>
<title>Decode? Encode? DENcode!</title>
<link rel="stylesheet" type="text/css" href="dencode.css"/>
<!--<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.min.js"></script>-->
<!--<script type="text/javascript" src="utf8.js"></script>-->
<!--<script type="text/javascript" src="quoted-printable.js"></script>-->
<!--<script type="text/javascript" src="dencode.js"></script>-->
<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>
<script type="text/javascript" src="systemjs.config.js"></script>
<script type="text/javascript">
System.import("app").catch(function (err) {
console.log(err);
});
</script>
</head>
<body>
<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>
<dencode-app>Please hold on, we're starting the turbines ...</dencode-app>
</body>
</html>