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