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