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