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