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