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