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