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