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