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