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