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