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