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