elm-in-action/index.html

24 lines
731 B
HTML
Raw Normal View History

2024-03-02 22:09:12 -08:00
<!doctype html>
<html>
<head>
2024-03-10 19:17:25 -07:00
<!-- <style> -->
<!-- body { background-color: rgb(44, 44, 44); color: white; } -->
<!-- img { border: 1px solid white; margin: 5px; } -->
<!-- .large { width: 500px; float: right; } -->
<!-- .selected { margin: 0; border: 6px solid #60b5cc; } -->
<!-- .content { margin: 40px auto; width: 960px; } -->
<!-- #thumbnails { width: 440px; float: left; } -->
<!-- h1 { font-family: Verdana; color: #60b5cc; } -->
<!-- </style> -->
<link rel="stylesheet" href="http://elm-in-action.com/styles.css">
2024-03-02 22:09:12 -08:00
</head>
<body>
<div id="app"></div>
<script src="app.js"></script>
<script>
Elm.PhotoGroove.init({node: document.getElementById("app")});
</script>
</body>
</html>