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