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