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