css - Importing Google Font into HTML Service -
are able import google font google apps script's html service?
i trying do:
<link href='http://fonts.googleapis.com/css?family=roboto' rel='stylesheet' type='text/css'>
and use
.nav-stacked li { color: rgb(136, 136, 136); display: list-item; font: 18px 'roboto', sans-serif; font-weight: 100; height: 20px; line-height: 20px; padding-right: 10px; text-indent: 24px; width: 194px; }
but keeps reverting sans-serif font.
thanks help,
you need style properly
.nav-stacked li { font: 18px 'roboto',sans-serif; }
Comments
Post a Comment