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