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