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