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