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