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