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