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