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