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