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