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