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