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