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