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