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