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