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