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