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