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