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