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