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