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