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