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