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