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