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