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