Tutorials | Apps Script | Google Developers

Google Sheets Web App Example - Google Apps Script Web App Tutorial - Part 1

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/76425e49-5a30-47db-8916-d4a5bf949ba5/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1a5532ea-90d9-467e-9a8e-e7df1ed975b1/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/d45ccf21-a7c9-4705-ab25-e79d125cee13/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/31f5545d-c562-46d9-8b97-0087f8166e26/Untitled.png

이름 반드시 doGet

function doGet() {
  return HtmlService.createHtmlOutputFromFile('page');
}
<!DOCTYPE html>
<html>
  <head>
    <base target="_top">
  </head>
  <body>
    <h1>hello</h1>
  </body>
</html>

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/ac46bdba-e79f-4e64-b7bb-612a994ed35a/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/ee45bd68-24ae-46c4-b166-99ac9b18876b/Untitled.png