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