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