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