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