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