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