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