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