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