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