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