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