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