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