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