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