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