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