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