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