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