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