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