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