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