git @ Cat's Eye Technologies HTML5-Gewgaws / master the-frame / index.html
master

Tree @master (Download .tar.gz)

index.html @masterraw · history · blame

<!DOCTYPE html>
<head>
  <meta charset="utf-8">
  <title>The Frame</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
canvas {
  border: 1px solid blue;
}
#container {
    width: 100%;
    text-align: center;
}
  </style>
</head>
<body>

<h1>The Frame</h1>

<div id="container"></div>

</body>
<script src="the-frame.js"></script>
<script>
  launch('yoob/', 'container', {
      'imgURL': 'the-frame.png'
  });
</script>