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