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