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