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