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