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