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