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