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