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