top | item 31498596

(no title)

yukistar | 3 years ago

I actually never though of opening a .html file from my own computer, hah! That's kind of awesome. Thank you for the ideas for web hosting.

discuss

order

WalterGR|3 years ago

You're quite welcome.

Start small. There's no need to prototype beforehand. There's no need to pick up a huge framework. No need to find a web host. This is all you need to get going, in an .html file on your computer:

  <!DOCTYPE html>
  <html>
      <head>
          <title>Optometry calculator</title>
          <script>
              function add() {
                  var first = parseInt(document.getElementById("first").value);
                  var second = parseInt(document.getElementById("second").value);
                  document.getElementById("result").innerText = first + second;
              }
          </script>
      </head>
      <body>
          <p>
              First number:
              <input type="text" id="first">
          </p>
          <p>
              Second number:
              <input type="text" id="second">
          </p>
          <p>
              <button onclick="add()">Add</button>
          </p>
          <p id="result">
          </p>
      </body>
  </html>

yukistar|3 years ago

Aw, this is so cute! This gives me quite a bit of motivation to start!