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