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