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