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