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