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