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