How to add custom font into Google Webdesigner? -


how add custom font google webdesigner?

i see there option include google fonts, can't find way include 1 of own personal ones.

go code view add @font-face css in normal html document. put font files in assets folder.

example:

@font-face {   font-family: louisregular;   src: url(assets/louisregular.ttf); } @font-face {   font-family: louisitalic;   src: url(assets/louisitalic.ttf); } @font-face {   font-family: louisbolditalic;   src: url(assets/louisbolditalic.ttf); } 

now select div , apply font-family top or css panel in rhs. note top bar might not give auto suggestion of new font add ways , should work.


Comments