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