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