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