diff --git a/htdocs/website/index.php b/htdocs/website/index.php
index c8b9cb27202..d716fd4a9ad 100644
--- a/htdocs/website/index.php
+++ b/htdocs/website/index.php
@@ -1698,7 +1698,11 @@ if ($action == 'editcss')
// Common HTML header
print '
';
- print $langs->trans('WEBSITE_HTML_HEADER');
+ $htmlhelp=$langs->trans("Example").' : ';
+ $htmlhelp.='<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous" ></script> ';
+ $htmlhelp.='<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous" ></script> ';
+ $htmlhelp.='<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" /> ';
+ print $form->textwithpicto($langs->trans('WEBSITE_HTML_HEADER'), $htmlhelp, 1, 'help', '', 0, 2, 'htmlheadertooltip');
print ' | ';
$doleditor=new DolEditor('WEBSITE_HTML_HEADER', $htmlheader, '', '220', 'ace', 'In', true, false, 'ace', 0, '100%', '');
|