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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -