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