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