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