hello HTML.js 299 B

12345678910111213
  1. /*
  2. hello HTML.js
  3. You can add this script to Serverless WebApp
  4. and visit the API endpoint generated to see
  5. the code generated HTML file.
  6. */
  7. HTTP_HEADER = "text/html; charset=utf-8";
  8. var html = "";
  9. html += "<h1>Welcome To My Website</h1>";
  10. html += "<p>Hello World!</p>";
  11. sendResp(html);