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