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