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