Use on the webTotal Use [ 5179 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/45153f5e742bff134b7baa76c56eecc5?family=Lipo+TRIAL+Expanded+Thin" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/45153f5e742bff134b7baa76c56eecc5?family=Lipo+TRIAL+Expanded+Thin);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Lipo TRIAL Expanded Thin";
src: url("https://db.onlinewebfonts.com/t/45153f5e742bff134b7baa76c56eecc5.eot");
src: url("https://db.onlinewebfonts.com/t/45153f5e742bff134b7baa76c56eecc5.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/45153f5e742bff134b7baa76c56eecc5.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/45153f5e742bff134b7baa76c56eecc5.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/45153f5e742bff134b7baa76c56eecc5.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/45153f5e742bff134b7baa76c56eecc5.svg#Lipo TRIAL Expanded Thin")format("svg");
}
2CSS rules to specify fonts
font-family: "Lipo TRIAL Expanded Thin";