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