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