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