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