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