photo-groove/index.html
Alexander Kobjolke e47f1d0449 Implement chapter 4 - part1
- pull photo urls from the server
- provide styles.css and list ourselves
2023-12-11 21:02:12 +01:00

13 lines
255 B
HTML

<!doctype html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="app"></div>
<script src="app.js"></script>
<script>
Elm.PhotoGroove.init({node: document.getElementById("app")});
</script>
</body>
</html>