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