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