www.pdelong.com

Source for https://www.pdelong.com

git clone https://code.pdelong.com/www.pdelong.com.git

 1<!DOCTYPE html>
 2
 3<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>
12
13  <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>
19
20    <div id="results"></div>
21
22    <script type="application/javascript" src="index.js" async></script>
23  </body>
24</html>