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