Use on the webTotal Use [ 5011 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/4eadf771db26f6cafd64374a54b8270d?family=Lipo+Text+TRIAL+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/4eadf771db26f6cafd64374a54b8270d?family=Lipo+Text+TRIAL+Thin);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Lipo Text TRIAL Thin";
src: url("https://db.onlinewebfonts.com/t/4eadf771db26f6cafd64374a54b8270d.eot");
src: url("https://db.onlinewebfonts.com/t/4eadf771db26f6cafd64374a54b8270d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/4eadf771db26f6cafd64374a54b8270d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/4eadf771db26f6cafd64374a54b8270d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/4eadf771db26f6cafd64374a54b8270d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/4eadf771db26f6cafd64374a54b8270d.svg#Lipo Text TRIAL Thin")format("svg");
}
2CSS rules to specify fonts
font-family: "Lipo Text TRIAL Thin";