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