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