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