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