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