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