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