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