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