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