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