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