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