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