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