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