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