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