<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Yet Another TODO List - Demo</title>
<meta name="description" content="Demo for TODO list JQuery plugin">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="bundle.css">
<style>
body {
background: gray;
margin: auto;
max-width: 500px;
text-align: center;
}
body #root {
background: white;
height: 100%;
min-height: 100vh;
}
</style>
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<div id="root">
<br/>
<h1>Yet Another TODO list Demo</h1>
<br/>
<div id="container-1"></div>
<br/>
<div id="container-2"></div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.3.1.min.js"><\/script>')</script>
<script src="bundle.js"></script>
<script src="demo.js"></script>
</body>
</html>
|