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