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