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