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