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