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