16 lines
441 B
HTML
16 lines
441 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Cookbook</title>
|
|
<script src="index.js"></script>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<button onclick="syncRecipes()">Sync recipes</button>
|
|
<a href="addRecipe/addRecipe.html"><button>Add recipe</button></a>
|
|
|
|
<div id="recipes"></div>
|
|
</body>
|
|
</html> |