コード.gs
function doGet() {
return HtmlService.createHtmlOutputFromFile("index");
}
|
意訳この機能がやること 指定したHTMLファイルを表示する |
index.html
<!DOCTYPE html>
<html>
<body>
<button type="button">ボタン</button>
</body>
</html>
|
意訳これはHTML5文書です ボタンを置く |