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