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