factorio-recipes/public/index.html

16 lines
316 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Factorio recipes</title>
<script type="text/javascript">
fetch("data.json")
.then(d => d.json())
.then(console.log);
</script>
</head>
<body>
worms!
</body>
</html>