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