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