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