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