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