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