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