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