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