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