1<!DOCTYPE html>23<html lang="en">4 <head>5 <title>Plate Math Calculator</title>6 <meta charset="UTF-8" />7 <meta name="viewport" content="width=device-width, initial-scale=1.0" />8 <meta property="og:title" content="Plate Math" />9 <meta property="og:type" content="website" />10 <meta property="og:url" content="https://pdelong.com/platemath" />11 </head>1213 <body>14 <form id="form">15 <label for="weight">Weight:</label>16 <input type="number" id="weight" name="weight" size="8" />17 <button id="submit" type="submit">Calculate</button>18 </form>1920 <div id="results"></div>2122 <script type="application/javascript" src="index.js" async></script>23 </body>24</html>