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