<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
↑を<head></head>内に入れておく
テキストボックスとボタンを表示する例
スタイルを設定しなくてもガイドに沿ったスタイルを適用してくれる
スタイルを読み込まない場合はこうなる
コード.gs
function doGet() { return HtmlService.createHtmlOutputFromFile("index"); } |
意訳この機能がやること 指定したHTMLファイルを表示する |
index.html
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css"> </head> <body> <input type='text'> <button>button</button> </body> </html> |
意訳これはHTML5文書です スタイルを読み込む テキストボックス ボタン |
CSSの中身