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