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