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