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