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