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