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