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