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