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