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