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