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