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