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