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