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