September 2018
Intermediate to advanced
328 pages
9h 10m
English
We need an HTML file to act as the entry point to the application. Create a file in the /src directory named index.html and populate it with the following contents:
<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>Wasm Workers</title> <link rel="stylesheet" type="text/css" href="styles.css" /></head><body> <form class="valueForm"> <div class="valueForm"> <label for="firstVal">First Value:</label> <input id="firstVal" type="number" value="0" /> </div> <div class="valueForm"> <label for="secondVal">Second Value:</label> <input id="secondVal" type="number" value="0" /> </div> <div class="valueForm"> <label for="result">Result:</label> <input id="result" type="number" value="0" readonly /> </div> </form> <div> <button ...
Read now
Unlock full access