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