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