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