Используйте встроенный CSS , чтобы указать background-color .
<input style="background-color:#4CAF50" type="button" value="Inexistants" onclick="google.script.run.JoursInexistants()" />
Вы могли бы также рассмотреть некоторые другие способы указания стилей, которые могут быть более полезными, например, если вы хотите, чтобы несколько кнопок имели одинаковый цвет.(На самом деле это очень рекомендуется. Однако это не требуется, особенно если вы не очень хорошо знакомы с понятиями. Иногда лучше просто заставить его выглядеть так, как вы хотите, а затем сделать его «правильным».)
https://www.w3schools.com/css/css_howto.asp
Я думаю, вам также нужно переместить тег ссылки в самом верху вашего документа в теги <head></head>
, как показано ниже.
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
</head>
<body>
Hello, dear I-Care's member!<br/><br/>
Ajouter des jours Inexistants!<br/>
<input type="button" value="Inexistants" onclick="google.script.run.JoursInexistants()" /><br/><br/>
Ajouter des jours Mensuel!<br/>
<input type="button" value="Mensuel" onclick="google.script.run.JoursMensuel()" /><br/><br/>
Ajouter des jours Férié!<br/>
<input type="button" value="Férié" onclick="google.script.run.JoursFerie()" /><br/><br/>
Ajouter des jours de Congé!<br/>
<input type="button" value="Congé" onclick="google.script.run.JoursConge()" /><br/><br/>
Ajouter des jours Possible!<br/>
<input type="button" value="Possible" onclick="google.script.run.JoursPossible()" /><br/><br/>
Ajouter des jours en Plus!<br/>
<input type="button" value="Plus" onclick="google.script.run.JoursEnPlus()"/><br/><br/>
Ajouter des jours Weekend!<br/>
<input type="button" value="Weekend" onclick="google.script.run.JoursWeekend()" /><br/><br/>
Remettre à zéro!<br/>
<input type="button" value="Blanc" onclick="google.script.run.JoursBlanc()" /><br/><br/><br/>
<input type="button" value="Close" onclick="google.script.host.close()" />
<button class="share">Share</button>
<button>Close</button>
</body>
</html>