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