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