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