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