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