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