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