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