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