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