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