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