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