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