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