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