HOMEを開く
コード.gs
function doGet() { return HtmlService.createHtmlOutputFromFile("index"); } |
意訳この機能がやること 指定したHTMLファイルを表示する |
index.html
<!DOCTYPE html> <html> <body> <a href="http://www.pre-practice.net/" target="_blank">HOMEを開く</a> </body> </html> |
意訳これはHTML5文書です テキストにリンクを付ける |