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