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