Advertisement
dronkowitz

Recipe HTML

Jan 20th, 2023 (edited)
962
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <title>Recipe</title>
  5.   <link rel="stylesheet" type="text/css" href="style.css">
  6. </head>
  7. <body>
  8.   <h1>Recipe App</h1>
  9.   <div id="recipe-list">
  10.     <div>
  11.       <form id = "add-recipe-form">
  12.         <label for = "recipe-name">Recipe
  13.           Name:</label>
  14.         <input type = "text" id = "recipe-name"
  15.          name = "recipe-name">
  16.     <button id="add-recipe-btn">Add Recipe</button>
  17.     <script src="app.js"></script>
  18.   </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement