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