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