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