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