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