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