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