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