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