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