Advertisement
RahmanIEN

index.html

Oct 25th, 2023 (edited)
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.44 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>Random Meal from TheMealDB</title>
  5.   </head>
  6.   <body>
  7.     <center>
  8.       <h1>Random Meal from TheMealDB</h1>
  9.       <div
  10.        id="meal-details"
  11.        style="
  12.          width: 65%;
  13.          padding: 4px;
  14.          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  15.          transition: 0.3s;
  16.        "
  17.      ></div>
  18.     </center>
  19.  
  20.     <script src="main.js"></script>
  21.   </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement