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