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