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