CacheSim/index.html

16 lines
561 B
HTML
Raw Normal View History

2019-05-28 22:56:45 -07:00
<html>
<head>
2019-05-29 19:11:04 -07:00
<script src="static/js/elm.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
2019-05-29 19:11:04 -07:00
<link rel="stylesheet" href="static/css/style.css">
2019-05-28 22:56:45 -07:00
</head>
<body>
<div id="elm"></div>
<script>
var app = Elm.Main.init({
node: document.getElementById('elm')
});
</script>
</body>
</html>