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