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