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