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