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