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