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