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