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