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