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