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