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